mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-22 20:51:07 +01:00
Removed default values
This commit is contained in:
parent
36fc5f8404
commit
4c8b96c34a
@ -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
|
||||||
|
@ -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"
|
Loading…
Reference in New Issue
Block a user