Nginx Proxy Manager Stack: update env variables

This commit is contained in:
Aroy-Art 2025-07-08 21:54:34 +02:00
parent 8c997b533a
commit 86f37b7c60
Signed by: Aroy
GPG key ID: DB9689E9391DD156
2 changed files with 10 additions and 0 deletions

View file

@ -20,11 +20,16 @@ services:
DB_POSTGRES_NAME: ${DB_NAME:-npm}
# Set to true if IPv6 is not enabled on your host
DISABLE_IPV6: false
TZ: ${TZ:-Europe/Stockholm}
volumes:
- ${DATA_PATH:-./Data}:/data
- ${LE_PATH:-./LetsEncrypt}:/etc/letsencrypt
depends_on:
- db
logging:
driver: loki
options:
loki-url: "${LOKI_URL:-http://localhost:3100/loki/api/v1/push}"
db:
image: postgres:16-alpine
@ -32,5 +37,10 @@ services:
POSTGRES_USER: ${DB_USER:-npm}
POSTGRES_PASSWORD: ${DB_PASSWORD:-npmpass}
POSTGRES_DB: ${BDB_NAME:-npm}
TZ: ${TZ:-Europe/Stockholm}
volumes:
- ${DB_PATH:-./Database}:/var/lib/postgresql/data
logging:
driver: loki
options:
loki-url: "${LOKI_URL:-http://localhost:3100/loki/api/v1/push}"