mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
Merge pull request #1063 from nextcloud/enh/noid/sig-proxy
modify the docker run command to not exit if you press ctrl+c
This commit is contained in:
commit
e9d9fb1ae6
3 changed files with 14 additions and 7 deletions
|
|
@ -1,7 +1,8 @@
|
||||||
## Developer channel
|
## Developer channel
|
||||||
If you want to switch to the develop channel, you simply stop and delete the mastercontainer and create a new one with a changed tag to develop:
|
If you want to switch to the develop channel, you simply stop and delete the mastercontainer and create a new one with a changed tag to develop:
|
||||||
```shell
|
```shell
|
||||||
sudo docker run -it \
|
sudo docker run \
|
||||||
|
--sig-proxy=false \
|
||||||
--name nextcloud-aio-mastercontainer \
|
--name nextcloud-aio-mastercontainer \
|
||||||
--restart always \
|
--restart always \
|
||||||
-p 80:80 \
|
-p 80:80 \
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,8 @@ The following instructions are especially meant for Linux. For macOS see [this](
|
||||||
(For people that cannot use ports 80 and/or 443 on this server, please follow the [reverse proxy documentation](https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md) because port 443 is used by this project and opened on the host by default even though it does not look like this is the case. Otherwise please run the command below!)
|
(For people that cannot use ports 80 and/or 443 on this server, please follow the [reverse proxy documentation](https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md) because port 443 is used by this project and opened on the host by default even though it does not look like this is the case. Otherwise please run the command below!)
|
||||||
```
|
```
|
||||||
# For x64 CPUs:
|
# For x64 CPUs:
|
||||||
sudo docker run -it \
|
sudo docker run \
|
||||||
|
--sig-proxy=false \
|
||||||
--name nextcloud-aio-mastercontainer \
|
--name nextcloud-aio-mastercontainer \
|
||||||
--restart always \
|
--restart always \
|
||||||
-p 80:80 \
|
-p 80:80 \
|
||||||
|
|
@ -37,7 +38,8 @@ The following instructions are especially meant for Linux. For macOS see [this](
|
||||||
|
|
||||||
```
|
```
|
||||||
# For arm64 CPUs:
|
# For arm64 CPUs:
|
||||||
sudo docker run -it \
|
sudo docker run \
|
||||||
|
--sig-proxy=false \
|
||||||
--name nextcloud-aio-mastercontainer \
|
--name nextcloud-aio-mastercontainer \
|
||||||
--restart always \
|
--restart always \
|
||||||
-p 80:80 \
|
-p 80:80 \
|
||||||
|
|
@ -82,7 +84,8 @@ On macOS, there are two things different in comparison to Linux: instead of usin
|
||||||
On Windows, the following command should work in the command prompt after you installed [Docker Desktop](https://www.docker.com/products/docker-desktop/):
|
On Windows, the following command should work in the command prompt after you installed [Docker Desktop](https://www.docker.com/products/docker-desktop/):
|
||||||
|
|
||||||
```
|
```
|
||||||
docker run -it ^
|
docker run ^
|
||||||
|
--sig-proxy=false ^
|
||||||
--name nextcloud-aio-mastercontainer ^
|
--name nextcloud-aio-mastercontainer ^
|
||||||
--restart always ^
|
--restart always ^
|
||||||
-p 80:80 ^
|
-p 80:80 ^
|
||||||
|
|
|
||||||
|
|
@ -274,7 +274,8 @@ After adjusting your reverse proxy config, use the following command to start AI
|
||||||
|
|
||||||
```
|
```
|
||||||
# For x64 CPUs:
|
# For x64 CPUs:
|
||||||
sudo docker run -it \
|
sudo docker run \
|
||||||
|
--sig-proxy=false \
|
||||||
--name nextcloud-aio-mastercontainer \
|
--name nextcloud-aio-mastercontainer \
|
||||||
--restart always \
|
--restart always \
|
||||||
-p 8080:8080 \
|
-p 8080:8080 \
|
||||||
|
|
@ -292,7 +293,8 @@ You should also think about limiting the apache container to listen only on loca
|
||||||
|
|
||||||
```
|
```
|
||||||
# For arm64 CPUs:
|
# For arm64 CPUs:
|
||||||
sudo docker run -it \
|
sudo docker run \
|
||||||
|
--sig-proxy=false \
|
||||||
--name nextcloud-aio-mastercontainer \
|
--name nextcloud-aio-mastercontainer \
|
||||||
--restart always \
|
--restart always \
|
||||||
-p 8080:8080 \
|
-p 8080:8080 \
|
||||||
|
|
@ -311,7 +313,8 @@ On macOS see https://github.com/nextcloud/all-in-one#how-to-run-aio-on-macos.
|
||||||
<summary>Command for Windows</summary>
|
<summary>Command for Windows</summary>
|
||||||
|
|
||||||
```
|
```
|
||||||
docker run -it ^
|
docker run ^
|
||||||
|
--sig-proxy=false ^
|
||||||
--name nextcloud-aio-mastercontainer ^
|
--name nextcloud-aio-mastercontainer ^
|
||||||
--restart always ^
|
--restart always ^
|
||||||
-p 8080:8080 ^
|
-p 8080:8080 ^
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue