Remove the " around the env values.

This commit is contained in:
Andrea Dell'Amico 2022-03-08 16:56:01 +01:00
parent 8b7bacb4f0
commit 80889abcb8
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 1 additions and 1 deletions

View File

@ -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 %}