Remove some quotes.

This commit is contained in:
Andrea Dell'Amico 2021-04-11 17:36:11 +02:00
parent 58fe949497
commit bcbe903bca
1 changed files with 3 additions and 3 deletions

View File

@ -17,15 +17,15 @@ services:
{% if shinyproxy_container_backend == 'docker' %} {% if shinyproxy_container_backend == 'docker' %}
build: . build: .
ports: 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', '>=') %} {% 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 %} {% endif %}
{% else %} {% else %}
image: {{ shinyproxy_docker_image }} image: {{ shinyproxy_docker_image }}
{% if shinyproxy_expose_prometheus and shinyproxy_version is version_compare('2.5.0', '>=') %} {% if shinyproxy_expose_prometheus and shinyproxy_version is version_compare('2.5.0', '>=') %}
ports: ports:
- '{{ shinyproxy_prometheus_port }}':'{{ shinyproxy_prometheus_port }}' - {{ shinyproxy_prometheus_port }}:{{ shinyproxy_prometheus_port }}
{% endif %} {% endif %}
{% endif %} {% endif %}
volumes: volumes: