mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-01 10:43:11 +01:00
7 lines
256 B
Django/Jinja
7 lines
256 B
Django/Jinja
# This template needs to be included in docker-compose.yml containers which depend on a database and additional containers
|
|
depends_on:
|
|
{% if not enable_central_database | bool %}
|
|
database:
|
|
condition: service_healthy
|
|
{% endif %}
|
|
{{ "\n" }} |