Remove some quotes.
This commit is contained in:
parent
58fe949497
commit
bcbe903bca
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue