This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
services/_ansible/templates/docker-compose.yml.j2

7 lines
304 B
Text
Raw Normal View History

2023-06-13 20:17:14 +00:00
{% set compose_file = compose.file | default({}) %}
2023-06-13 18:48:16 +00:00
{% set compose_file = compose_default_file | combine(compose_file, recursive=True) %}
{% if compose.env | default(False) %}
2023-06-13 20:17:14 +00:00
{% set compose_file = compose_file | combine(compose_env_file, recursive=True) %}
2023-06-13 18:48:16 +00:00
{% endif %}
{{ compose_file | to_nice_yaml }}