Browse Source

remove quoted port comment from docker-compose template

Blaine Story 3 năm trước cách đây
mục cha
commit
46bdd08d89
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      roles/docker/templates/docker-compose.yml.j2

+ 1 - 1
roles/docker/templates/docker-compose.yml.j2

@@ -46,7 +46,7 @@ services:
 {% if container.ports is defined %}
     ports:
 {% for port in container.ports %}
-      - "{{ port }}" # https://github.com/go-yaml/yaml/issues/34#issuecomment-55772666
+      - "{{ port }}"
 {% endfor %}
 {% endif %}
 {% if ( container.environment is defined ) or ( container.include_global_env_vars is defined and container.include_global_env_vars) %}