container: support custom built images, mariadb, bind mounts, custom user
This commit is contained in:
9
roles/container/templates/Dockerfile.j2
Normal file
9
roles/container/templates/Dockerfile.j2
Normal file
@@ -0,0 +1,9 @@
|
||||
# {{ ansible_managed }}
|
||||
|
||||
FROM {{ docker_image }}
|
||||
{% if dockerfile.run is iterable %}
|
||||
{% for cmd in dockerfile.run %}
|
||||
RUN {{ cmd }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user