From d2adaa933184d013aae1e3b3250903b91f06aec3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 11 Feb 2022 21:58:24 +0100 Subject: [PATCH] Bot Updating Documentation --- images/docker-openvscode-server.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/images/docker-openvscode-server.md b/images/docker-openvscode-server.md index b48451d63..14870514c 100755 --- a/images/docker-openvscode-server.md +++ b/images/docker-openvscode-server.md @@ -73,7 +73,7 @@ services: - PUID=1000 - PGID=1000 - TZ=Europe/London - - CONNECTION_TOKEN=supersecrettoken #optional + - CONNECTION_TOKEN= #optional - CONNECTION_SECRET= #optional - SUDO_PASSWORD=password #optional - SUDO_PASSWORD_HASH= #optional @@ -92,7 +92,7 @@ docker run -d \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ - -e CONNECTION_TOKEN=supersecrettoken `#optional` \ + -e CONNECTION_TOKEN= `#optional` \ -e CONNECTION_SECRET= `#optional` \ -e SUDO_PASSWORD=password `#optional` \ -e SUDO_PASSWORD_HASH= `#optional` \ @@ -119,7 +119,7 @@ Docker images are configured using parameters passed at runtime (such as those a | `PUID=1000` | for UserID - see below for explanation | | `PGID=1000` | for GroupID - see below for explanation | | `TZ=Europe/London` | Specify a timezone to use. | -| `CONNECTION_TOKEN=supersecrettoken` | Optional security token for accessing the Web UI. | +| `CONNECTION_TOKEN=` | Optional security token for accessing the Web UI (ie. `supersecrettoken`). | | `CONNECTION_SECRET=` | Optional path to a file inside the container that contains the security token for accessing the Web UI (ie. `/path/to/file`). Overrides `CONNECTION_TOKEN`. | | `SUDO_PASSWORD=password` | If this optional variable is set, user will have sudo access in the openvscode-server terminal with the specified password. | | `SUDO_PASSWORD_HASH=` | Optionally set sudo password via hash (takes priority over `SUDO_PASSWORD` var). Format is `$type$salt$hashed`. |