From bcb4b8c462cf8c19ac24ca2de721f79e0e4f2938 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Tue, 8 Mar 2022 17:24:29 +0100 Subject: [PATCH] Fix a variable name. --- 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 78c4307..92ccf1e 100644 --- a/templates/shinyproxy-2-conf.yml.j2 +++ b/templates/shinyproxy-2-conf.yml.j2 @@ -134,7 +134,7 @@ proxy: {% if app.port is defined %}port: {{ app.port }}{% endif %} - {% if app.container_volumes is defined %}container-volumes: [ {% for vol in app.container_volumes %} "{{ vol }}"{% if not loop.end %}, {% endif %}{% endfor %} ]{% endif %} + {% if app.container_volumes is defined %}container-volumes: [ {% for vol in app.container_volumes %} "{{ vol }}"{% if not loop.last %}, {% endif %}{% endfor %} ]{% endif %} {% endfor %} {% endif %}