Added more database conditions to template

This commit is contained in:
Kevin Veen-Birkenbach 2023-12-31 11:44:21 +01:00
parent a112b67eda
commit 4c6d57c4e0

View File

@ -5,7 +5,9 @@ networks:
backend:
volumes:
{% if not ( enable_central_database | lower | bool ) %}
database:
{% endif %}
data:
x-op-restart-policy: &restart_policy
@ -28,7 +30,9 @@ x-op-app: &app
IMAP_ENABLED: "${IMAP_ENABLED:-false}"
volumes:
- "data:/var/openproject/assets"
{% if not ( enable_central_database | lower | bool ) %}
- "database:/var/openproject/pgdata"
{% endif %}
services:
@ -58,8 +62,10 @@ services:
- frontend
volumes:
- "data:/var/openproject/assets"
{% if not ( enable_central_database | lower | bool ) %}
- "database:/var/openproject/pgdata"
{% endif %}
web:
<<: *app
command: "./docker/prod/web"