21 lines
667 B
Plaintext
Raw Permalink Normal View History

# This template needs to be included in docker-compose.yml, which depend on a postgres database
{% if not applications[application_id].database.central_storage | bool %}
2023-12-28 00:28:30 +01:00
database:
2025-02-03 11:44:13 +01:00
image: postgres:{{applications.postgres.database_version}}-alpine
container_name: {{application_id}}-database
env_file:
- {{database_env}}
restart: {{docker_restart_policy}}
2023-12-28 00:28:30 +01:00
healthcheck:
2024-01-06 14:32:49 +01:00
test: ["CMD-SHELL", "pg_isready -U {{database_name}}"]
2023-12-28 00:28:30 +01:00
interval: 10s
timeout: 5s
retries: 6
volumes:
- type: volume
2023-12-28 00:28:30 +01:00
source: database
target: /var/lib/postgresql/data
networks:
2024-01-05 20:22:34 +01:00
- default
{% endif %}
2024-01-04 11:36:55 +01:00
{{ "\n" }}