diff --git a/lsio/openvscode-server/docker-compose.yaml b/lsio/openvscode-server/docker-compose.yaml index a1c2ddb..bcd3809 100644 --- a/lsio/openvscode-server/docker-compose.yaml +++ b/lsio/openvscode-server/docker-compose.yaml @@ -15,8 +15,8 @@ services: - PGID=${PGID:-100} # Specify a timezone to use for example Europe/Amsterdam - TZ=${TZ:-Europe/Amsterdam} - # Optional security token for accessing the Web UI. - - CONNECTION_TOKEN=supersecrettoken # optional + # Optional security token for accessing the Web UI (ie. `supersecrettoken`). + - CONNECTION_TOKEN= # optional # 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`. - CONNECTION_SECRET= # optional # If this optional variable is set, user will have sudo access in the openvscode-server terminal with the specified password. diff --git a/lsio/openvscode-server/docker-run.sh b/lsio/openvscode-server/docker-run.sh index 9621013..6af779f 100644 --- a/lsio/openvscode-server/docker-run.sh +++ b/lsio/openvscode-server/docker-run.sh @@ -8,7 +8,7 @@ docker run -d \ -e PUID=${PUID:-1024} `# for GroupID` \ -e PGID=${PGID:-100} `# for UserID` \ -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ - -e CONNECTION_TOKEN=supersecrettoken `# optional` `# Optional security token for accessing the Web UI.` \ + -e CONNECTION_TOKEN= `# optional` `# Optional security token for accessing the Web UI (ie. `supersecrettoken`).` \ -e CONNECTION_SECRET= `# optional` `# 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`.` \ -e SUDO_PASSWORD=password `# optional` `# If this optional variable is set, user will have sudo access in the openvscode-server terminal with the specified password.` \ -e SUDO_PASSWORD_HASH= `# optional` `# Optionally set sudo password via hash (takes priority over `SUDO_PASSWORD` var). Format is `$type$salt$hashed`.` \