Remove the " around the env values.
This commit is contained in:
parent
8b7bacb4f0
commit
80889abcb8
|
@ -111,7 +111,7 @@ proxy:
|
||||||
{% if app.environment is defined %}
|
{% if app.environment is defined %}
|
||||||
container-env:
|
container-env:
|
||||||
{% for env in app.environment %}
|
{% for env in app.environment %}
|
||||||
{{ env.name }}: "{{ env.value }}"
|
{{ env.name }}: {{ env.value }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue