mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
11 lines
218 B
Django/Jinja
11 lines
218 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" }} |