From 065e7043ee4a8a2547e5bc6b5e90b71be3c1fdf2 Mon Sep 17 00:00:00 2001 From: Simon L Date: Fri, 13 Jan 2023 11:55:41 +0100 Subject: [PATCH] add an explanation of `--sig-proxy=false` Signed-off-by: Simon L --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index fae72780..6b2782ae 100644 --- a/readme.md +++ b/readme.md @@ -56,6 +56,7 @@ The following instructions are especially meant for Linux. For macOS see [this]( Explanation of the command - `sudo docker run` This command spins up a new docker container. Docker commands can optionally be used without `sudo` if the user is added to the docker group (this is not the same as docker rootless, see FAQ below). + - `--sig-proxy=false` This option allows to exit the container shell that gets attached automatically when using `docker run` by using `[CTRL] + [C]` without shutting down the container. - `--name nextcloud-aio-mastercontainer` This is the name of the container. This line is not allowed to be changed, since mastercontainer updates would fail. - `--restart always` This is the "restart policy". `always` means that the container should always get started with the Docker daemon. See the Docker documentation for further detail about restart policies: https://docs.docker.com/config/containers/start-containers-automatically/ - `--publish 80:80` This means that port 80 of the container should get published on the host using port 80. It is used for getting valid certificates for the AIO interface if you want to use port 8443. It is not needed if you run AIO behind a reverse proxy and can get removed in that case as you can simply use port 8080 for the AIO interface then.