Nginx Proxy Manager Stack: update env variables
This commit is contained in:
parent
8c997b533a
commit
86f37b7c60
2 changed files with 10 additions and 0 deletions
0
Docker/Docker-Compose/Nginx-Proxy-Manager/.env.sample
Normal file
0
Docker/Docker-Compose/Nginx-Proxy-Manager/.env.sample
Normal file
|
@ -20,11 +20,16 @@ services:
|
||||||
DB_POSTGRES_NAME: ${DB_NAME:-npm}
|
DB_POSTGRES_NAME: ${DB_NAME:-npm}
|
||||||
# Set to true if IPv6 is not enabled on your host
|
# Set to true if IPv6 is not enabled on your host
|
||||||
DISABLE_IPV6: false
|
DISABLE_IPV6: false
|
||||||
|
TZ: ${TZ:-Europe/Stockholm}
|
||||||
volumes:
|
volumes:
|
||||||
- ${DATA_PATH:-./Data}:/data
|
- ${DATA_PATH:-./Data}:/data
|
||||||
- ${LE_PATH:-./LetsEncrypt}:/etc/letsencrypt
|
- ${LE_PATH:-./LetsEncrypt}:/etc/letsencrypt
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
|
logging:
|
||||||
|
driver: loki
|
||||||
|
options:
|
||||||
|
loki-url: "${LOKI_URL:-http://localhost:3100/loki/api/v1/push}"
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: postgres:16-alpine
|
image: postgres:16-alpine
|
||||||
|
@ -32,5 +37,10 @@ services:
|
||||||
POSTGRES_USER: ${DB_USER:-npm}
|
POSTGRES_USER: ${DB_USER:-npm}
|
||||||
POSTGRES_PASSWORD: ${DB_PASSWORD:-npmpass}
|
POSTGRES_PASSWORD: ${DB_PASSWORD:-npmpass}
|
||||||
POSTGRES_DB: ${BDB_NAME:-npm}
|
POSTGRES_DB: ${BDB_NAME:-npm}
|
||||||
|
TZ: ${TZ:-Europe/Stockholm}
|
||||||
volumes:
|
volumes:
|
||||||
- ${DB_PATH:-./Database}:/var/lib/postgresql/data
|
- ${DB_PATH:-./Database}:/var/lib/postgresql/data
|
||||||
|
logging:
|
||||||
|
driver: loki
|
||||||
|
options:
|
||||||
|
loki-url: "${LOKI_URL:-http://localhost:3100/loki/api/v1/push}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue