From 38bd04ded9baf865c109887ae82d8a7727c2ab7d Mon Sep 17 00:00:00 2001 From: szaimen Date: Thu, 17 Mar 2022 22:12:58 +0100 Subject: [PATCH 1/2] add docs on how to run it on windows Signed-off-by: szaimen --- readme.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f0d0dd3c..2522fc72 100644 --- a/readme.md +++ b/readme.md @@ -79,7 +79,26 @@ Nextcloud AIO is inspired by projects like Portainer that allow to manage the do Yes. Please refer to the following documentation on this: [reverse-proxy.md](https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md) ### How to run it on macOS? -On macOS, there is one specialty in comparison to linux: instead of using `--volume /var/run/docker.sock:/var/run/docker.sock:ro`, you need to use `--volume /var/run/docker.sock.raw:/var/run/docker.sock:ro`. Apart from that it should work and behave the same like on linux. +On macOS, there is one specialty in comparison to Linux: instead of using `--volume /var/run/docker.sock:/var/run/docker.sock:ro`, you need to use `--volume /var/run/docker.sock.raw:/var/run/docker.sock:ro` to run it after you installed Docker Desktop. Apart from that it should work and behave the same like on Linux. + +### How to run it on Windows? +On Windows, the following command should work after you installed Docker Desktop: +
+Click here to show it + +``` +docker run -it ^ +--name nextcloud-aio-mastercontainer ^ +--restart always ^ +-p 80:80 ^ +-p 8080:8080 ^ +-p 8443:8443 ^ +--volume nextcloud_aio_mastercontainer:/mnt/docker-aio-config ^ +--volume //var/run/docker.sock:/var/run/docker.sock:ro ^ +nextcloud/all-in-one:latest +``` + +
### Which ports are mandatory to be open? Only those (if you acces the Mastercontainer Interface internally via port 8080): From 3a0ad6a66f683c25eabb3368b71da399478a5927 Mon Sep 17 00:00:00 2001 From: szaimen Date: Sat, 19 Mar 2022 06:16:10 +0100 Subject: [PATCH 2/2] add header Signed-off-by: szaimen --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 2522fc72..f2937738 100644 --- a/readme.md +++ b/readme.md @@ -15,6 +15,7 @@ Included are: **Found a bug?** Please file an issue at https://github.com/nextcloud/all-in-one ## How to use this? +The following instructions are especially meant for Linux. For macOS see [this](#how-to-run-it-on-macos), for Windows see [this](#how-to-run-it-on-windows). 1. Install Docker on your Linux installation using: ``` curl -fsSL get.docker.com | sudo sh