use env vars for config

This commit is contained in:
2026-02-14 09:48:27 -03:00
parent 90058108a4
commit 8caa0ff46a
4 changed files with 14 additions and 12 deletions

View File

@@ -9,9 +9,9 @@ services:
volumes:
- ./config:/app/config
environment:
- PUID=1000
- PGID=1000
- TZ=America/Sao_Paulo
- PUID=${PUID}
- PGID=${PGID}
- TZ=${TZ}
- HOMEPAGE_ALLOWED_HOSTS=${HOMEPAGE_ALLOWED_HOSTS}
- DOCKER_HOST=tcp://socket-proxy:${SOCKET_PROXY_PORT}
labels: