modify the docker run command to not exit if you press ctrl+c

Signed-off-by: szaimen <szaimen@e.mail.de>
This commit is contained in:
szaimen 2022-08-26 12:16:44 +02:00
parent 40b2e014fb
commit c6b9bf20e7
3 changed files with 14 additions and 7 deletions

View file

@ -274,7 +274,8 @@ After adjusting your reverse proxy config, use the following command to start AI
```
# For x64 CPUs:
sudo docker run -it \
sudo docker run \
--sig-proxy=false \
--name nextcloud-aio-mastercontainer \
--restart always \
-p 8080:8080 \
@ -292,7 +293,8 @@ You should also think about limiting the apache container to listen only on loca
```
# For arm64 CPUs:
sudo docker run -it \
sudo docker run \
--sig-proxy=false \
--name nextcloud-aio-mastercontainer \
--restart always \
-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>
```
docker run -it ^
docker run ^
--sig-proxy=false ^
--name nextcloud-aio-mastercontainer ^
--restart always ^
-p 8080:8080 ^