mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-05-10 07:15:43 +02:00
7 lines
278 B
Django/Jinja
7 lines
278 B
Django/Jinja
{# This template needs to be included in docker-compose.yml containers, which just depend on a database #}
|
|
{% if not applications | is_feature_enabled('central_database',application_id) %}
|
|
depends_on:
|
|
database:
|
|
condition: service_healthy
|
|
{% endif %}
|
|
{{ "\n" }} |