Support for port and container volumes.

This commit is contained in:
Andrea Dell'Amico 2022-03-08 17:20:11 +01:00
parent 80889abcb8
commit ca7a097160
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 4 additions and 0 deletions

View File

@ -132,6 +132,10 @@ proxy:
{% endif %}
{% if app.port is defined %}port: {{ app.port }}{% endif %}
{% if app.container_volumes is defined %}container-volumes: [ {% for vol in app.container_volumes %} "{{ vol }}"{% if not loop.end%}, {% endif %}{% endfor %} ]{% endif %}
{% endfor %}
{% endif %}