From 80889abcb85d060f6763d303d670757a038ba4f1 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Tue, 8 Mar 2022 16:56:01 +0100 Subject: [PATCH] Remove the " around the env values. --- templates/shinyproxy-2-conf.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/shinyproxy-2-conf.yml.j2 b/templates/shinyproxy-2-conf.yml.j2 index 00702bc..c53a059 100644 --- a/templates/shinyproxy-2-conf.yml.j2 +++ b/templates/shinyproxy-2-conf.yml.j2 @@ -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 %}