container: support custom built images, mariadb, bind mounts, custom user

This commit is contained in:
uumas
2022-11-25 18:54:56 +02:00
parent ab357620f7
commit 9001420597
6 changed files with 247 additions and 49 deletions

View File

@@ -0,0 +1,9 @@
# {{ ansible_managed }}
FROM {{ docker_image }}
{% if dockerfile.run is iterable %}
{% for cmd in dockerfile.run %}
RUN {{ cmd }}
{% endfor %}
{% endif %}