Removed default values

This commit is contained in:
Kevin Veen-Birkenbach 2023-12-24 20:00:17 +01:00
parent 36fc5f8404
commit 4c8b96c34a
2 changed files with 3 additions and 4 deletions

View File

@ -27,7 +27,7 @@ x-op-app: &app
# set to true to enable the email receiving feature. See ./docker/cron for more options # set to true to enable the email receiving feature. See ./docker/cron for more options
IMAP_ENABLED: "${IMAP_ENABLED:-false}" IMAP_ENABLED: "${IMAP_ENABLED:-false}"
volumes: volumes:
- "${OPDATA:-opdata}:/var/openproject/assets" - "${OPDATA}:/var/openproject/assets"
services: services:
db: db:
@ -35,9 +35,9 @@ services:
<<: *restart_policy <<: *restart_policy
stop_grace_period: "3s" stop_grace_period: "3s"
volumes: volumes:
- "${PGDATA:-pgdata}:/var/lib/postgresql/data" - "${PGDATA}:/var/lib/postgresql/data"
environment: environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-p4ssw0rd} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: openproject POSTGRES_DB: openproject
networks: networks:
- backend - backend

View File

@ -17,6 +17,5 @@ DATABASE_URL="postgres://postgres:{{ openproject_database_password }}@db/openpro
RAILS_MIN_THREADS=4 RAILS_MIN_THREADS=4
RAILS_MAX_THREADS=16 RAILS_MAX_THREADS=16
# The following volumes are default
PGDATA="pgdata" PGDATA="pgdata"
OPDATA="opdata" OPDATA="opdata"