Add umami to ansible

This commit is contained in:
Tobias Reisinger 2023-06-13 20:48:16 +02:00
parent 7ff7dfe807
commit ecd00fc75d
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
15 changed files with 91 additions and 49 deletions

View file

@ -1,4 +1,4 @@
{{ service.domain }} {
{{ svc.domain }} {
import default
reverse_proxy {{ service.name }}:{{ service.port }}
reverse_proxy {{ svc.name }}:{{ svc.port }}
}

View file

@ -1 +1,6 @@
{{ compose_default_file | combine(compose_file, recursive=True) | to_nice_yaml }}
{% set compose_file = compose_file | default({}) %}
{% set compose_file = compose_default_file | combine(compose_file, recursive=True) %}
{% if compose.env | default(False) %}
{% set compose_file = compose_file | combine(compose_env_file, recursive=True) %}
{% endif %}
{{ compose_file | to_nice_yaml }}

View file

@ -0,0 +1,3 @@
{% for key, value in svc_env.items() %}
{{ key }}={{ value }}
{% endfor %}