Add build var to template

This commit is contained in:
Fuzzy 2021-09-17 23:22:11 -04:00 committed by GitHub
parent 67d0d67ba0
commit 5a4ca5dbbd
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 %}