mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-10-10 10:48:10 +02:00
Ref: https://chatgpt.com/share/68d3db3d-b6b4-800f-be4b-24ac50005552
13 lines
329 B
Django/Jinja
13 lines
329 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
|
|
{% filter indent(4) %}
|
|
{% include 'roles/docker-container/templates/resource.yml.j2' %}
|
|
{% endfilter %}
|
|
{{ "\n" }} |