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 %}
|
||||
container-env:
|
||||
{% for env in app.environment %}
|
||||
{{ env.name }}: "{{ env.value }}"
|
||||
{{ env.name }}: {{ env.value }}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
|
|
Loading…
Reference in New Issue