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

7 lines
240 B
Plaintext
Raw Normal View History

{# 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" }}