Fix the compose file accordingly.
This commit is contained in:
parent
01e57d485d
commit
d622756b39
|
|
@ -1,8 +1,14 @@
|
||||||
version: '3.6'
|
version: '3.6'
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
{{ haproxy_docker_overlay_network }}:
|
{% for overlay_net in haproxy_docker_overlay_default_network %}
|
||||||
|
{{ overlay_net }}:
|
||||||
external: true
|
external: true
|
||||||
|
{% endfor %}
|
||||||
|
{% for add_overlay_net in haproxy_docker_swarm_overlay_additional_networks %}
|
||||||
|
{{ add_overlay_net }}:
|
||||||
|
external: true
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
{% if not haproxy_docker_mount_conf_file %}
|
{% if not haproxy_docker_mount_conf_file %}
|
||||||
configs:
|
configs:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue