fix: update SnapOtter service environment variables in compose.yaml

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
nathan 2026-04-25 11:34:47 -04:00
parent 2adcbad6f0
commit 81f63f717d

View File

@ -8,9 +8,21 @@ services:
networks: networks:
- proxy-net - proxy-net
environment: environment:
- AUTH_ENABLED=false - AUTH_ENABLED=${AUTH_ENABLED}
# - DEFAULT_USERNAME=admin #Set to true to require login. The Docker image defaults to true.
# - DEFAULT_PASSWORD=admin
- DEFAULT_USERNAME=${DEFAULT_USERNAME}
#Username for the initial admin account. Only used on first run.
- DEFAULT_PASSWORD=${DEFAULT_PASSWORD}
#Password for the initial admin account. Change this after first login.
- MAX_USERS=${MAX_USERS}
# Maximum number of registered user accounts. Set to 0 for unlimited.
- SESSION_DURATION_HOURS=${SESSION_DURATION_HOURS}
#Login session lifetime in hours (default is 7 days).
restart: unless-stopped restart: unless-stopped
labels: labels:
- "traefik.enable=true" - "traefik.enable=true"