computer-playbook/templates/docker/container/depends-on-just-database.yml.j2

7 lines
236 B
Plaintext
Raw Normal View History

2024-05-26 22:57:52 +02:00
# This template needs to be included in docker-compose.yml containers, which just depend on a database
{% if not enable_central_database | bool %}
depends_on:
database:
condition: service_healthy
{% endif %}
2024-01-04 11:36:55 +01:00
{{ "\n" }}