Add service role

This commit is contained in:
uumas
2024-07-28 01:12:26 +03:00
parent 64d074ea4b
commit 87bb985211
20 changed files with 937 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
# {{ ansible_managed }}
FROM {{ docker_image }}
{% for item in dockerfile %}
{{ item }}
{% endfor %}

View File

@@ -0,0 +1,8 @@
# {{ ansible_managed }}
{% for section in docker_mariadb_config | dict2items %}
[{{ section.key }}]
{% for item in section.value | dict2items %}
{{ item.key }} = {{ item.value }}
{% endfor %}
{% endfor %}