11 lines
220 B
Django/Jinja

{# Base for docker services #}
restart: {{ DOCKER_RESTART_POLICY }}
{% if application_id | has_env %}
env_file:
- "{{docker_compose.files.env}}"
{% endif %}
logging:
driver: journald
{{ "\n" }}