diff --git a/readme.md b/readme.md index 30bb8ec2..56cd5c45 100644 --- a/readme.md +++ b/readme.md @@ -20,22 +20,8 @@ The following instructions are especially meant for Linux. For macOS see [this]( ``` curl -fsSL get.docker.com | sudo sh ``` -2. Make sure to pull the latest image: - ``` - # For x64 CPUs: - sudo docker pull nextcloud/all-in-one:latest - ``` -
- Command for arm64 CPUs like the Raspberry Pi 4 - ``` - # For arm64 CPUs: - sudo docker pull nextcloud/all-in-one:latest-arm64 - ``` - -
- -3. Run the following command in order to start the container: +2. Run the following command in order to start the container: ``` # For x64 CPUs: sudo docker run -it \ @@ -66,11 +52,11 @@ The following instructions are especially meant for Linux. For macOS see [this]( -4. After the initial startup, you should be able to open the Nextcloud AIO Interface now on port 8080 of this server.
+3. After the initial startup, you should be able to open the Nextcloud AIO Interface now on port 8080 of this server.
E.g. `https://internal.ip.of.this.server:8080`
If your server has port 80 and 8443 open and you point a domain to your server, you can get a valid certificate automatially by opening the Nextcloud AIO Interface via:
`https://your-domain-that-points-to-this-server.tld:8443` -5. Please do not forget to open port `3478/TCP` and `3478/UDP` for the Talk container! +4. Please do not forget to open port `3478/TCP` and `3478/UDP` for the Talk container! ## FAQ ### How does it work? @@ -92,10 +78,10 @@ Only those (if you acces the Mastercontainer Interface internally via port 8080) - `3478/TCP` and `3478/UDP`: will be used by the Turnserver inside the Talk container and needs to be open ### 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` to run it after you installed Docker Desktop. 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](https://www.docker.com/products/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: +On Windows, the following command should work after you installed [Docker Desktop](https://www.docker.com/products/docker-desktop/):
Click here to show it diff --git a/reverse-proxy.md b/reverse-proxy.md index 755fbe44..0f2b51f8 100644 --- a/reverse-proxy.md +++ b/reverse-proxy.md @@ -49,6 +49,25 @@ nextcloud/all-in-one:latest-arm64
+On macOS see https://github.com/nextcloud/all-in-one#how-to-run-it-on-macos. + +
+ +Command for Windows + +``` +docker run -it ^ +--name nextcloud-aio-mastercontainer ^ +--restart always ^ +-p 8080:8080 ^ +-e APACHE_PORT=11000 ^ +--volume nextcloud_aio_mastercontainer:/mnt/docker-aio-config ^ +--volume //var/run/docker.sock:/var/run/docker.sock:ro ^ +nextcloud/all-in-one:latest +``` + +
+ After doing so, you should be able to access the AIO Interface via `https://internal.ip.of.this.server:8080`. Enter your domain that you've entered in the reverse proxy config and you should be done. Please do not forget to open port `3478/TCP` and `3478/UDP` for the Talk container! ### Optional @@ -65,4 +84,4 @@ https://:8443 { } ``` -Of course you also need to modify `` to the domain that you want to use. Afterwards should the AIO interface be accessible via `https://:8443`. +Of course, you also need to modify `` to the domain that you want to use. Afterwards should the AIO interface be accessible via `https://:8443`. You can alternatively change the domain to a different subdomain by using `https://:443` in the Caddyfile and use that to access the AIO interface.