Merge pull request #4 from FuzzyMistborn/patch-1

Add build var to template
This commit is contained in:
Alex Kretzschmar 2022-04-26 20:11:49 -04:00 committed by GitHub
commit 0ee8c6c35f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,9 @@ services:
{% if container.network_mode is defined %}
network_mode: {{ container.network_mode }}
{% endif %}
{% if container.build is defined %}
build: {{ container.build }}
{% endif %}
{% if container.privileged is defined %}
privileged: {{ container.privileged }}
{% endif %}