From bcbe903bca5f2bff032226cc20eaa05e95460ad5 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Sun, 11 Apr 2021 17:36:11 +0200 Subject: [PATCH] Remove some quotes. --- templates/shinyproxy-docker-compose.yml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/shinyproxy-docker-compose.yml.j2 b/templates/shinyproxy-docker-compose.yml.j2 index 19448f7..c3919ff 100644 --- a/templates/shinyproxy-docker-compose.yml.j2 +++ b/templates/shinyproxy-docker-compose.yml.j2 @@ -17,15 +17,15 @@ services: {% if shinyproxy_container_backend == 'docker' %} build: . ports: - - '{{ shinyproxy_http_port }}':'{{ shinyproxy_http_port }}' + - {{ shinyproxy_http_port }}:{{ shinyproxy_http_port }} {% if shinyproxy_expose_prometheus and shinyproxy_version is version_compare('2.5.0', '>=') %} - - '{{ shinyproxy_prometheus_port }}':'{{ shinyproxy_prometheus_port }}' + - {{ shinyproxy_prometheus_port }}:{{ shinyproxy_prometheus_port }} {% endif %} {% else %} image: {{ shinyproxy_docker_image }} {% if shinyproxy_expose_prometheus and shinyproxy_version is version_compare('2.5.0', '>=') %} ports: - - '{{ shinyproxy_prometheus_port }}':'{{ shinyproxy_prometheus_port }}' + - {{ shinyproxy_prometheus_port }}:{{ shinyproxy_prometheus_port }} {% endif %} {% endif %} volumes: