{# This template needs to be included in docker-compose.yml containers, which depend on a database, redis and optional additional volumes #}
    depends_on:
{% if not applications[application_id].database.central_storage | bool %}
      database:
        condition: service_healthy
{% endif %}
      redis:
        condition: service_healthy
{{ "\n" }}