Rename docker-compose.yml to compose.yaml and service.env to .env

This commit is contained in:
Tobias Reisinger 2025-06-17 19:14:28 +02:00
parent 7821b6b33b
commit 214723546a
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
20 changed files with 36 additions and 36 deletions

View file

@ -0,0 +1,20 @@
{%- set compose_file = compose.file | default({}) -%}
{%- set compose_file = compose_file_main | combine(compose_file, recursive=True) -%}
{%- if env is defined -%}
{%- set compose_file = compose_file | combine(compose_file_env, recursive=True) -%}
{%- endif -%}
{%- if compose.network | default(True) -%}
{%- set compose_file = compose_file | combine(compose_file_networks, recursive=True) -%}
{%- endif -%}
{%- if compose.volumes | default(False) -%}
{%- set compose_file = compose_file | combine(compose_file_volumes, recursive=True) -%}
{%- endif -%}
{%- if compose.monitoring | default(False) -%}
{%- set compose_file = compose_file | combine(compose_file_monitoring_label, recursive=True) -%}
{%- endif -%}
{{ compose_file | to_nice_yaml }}