adjusted default values

This commit is contained in:
2026-01-30 08:31:39 +01:00
parent b055768d75
commit b45e293e26
4 changed files with 8 additions and 5 deletions

View File

@@ -4,10 +4,10 @@ services:
image: lscr.io/linuxserver/code-server:latest
container_name: code-server
environment:
- PUID=${PUID:-default 1000}
- PGID=${PGID:-default 1000}
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
- TZ=${TZ:-default}
- PASSWORD=${PASSWORD:-default secure_password} #optional
- PASSWORD=${PASSWORD:-secure_password} #optional
#- HASHED_PASSWORD= #optional
#- SUDO_PASSWORD=password #optional
#- SUDO_PASSWORD_HASH= #optional
@@ -17,5 +17,5 @@ services:
volumes:
- ./config:/config
ports:
- ${PORT:-default 8443}:8443
- ${PORT:-8443}:8443
restart: unless-stopped