From 93199b0d3a61566d461934dd445daa6e6338be49 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Mon, 5 Oct 2020 18:48:55 +0200 Subject: [PATCH] Version must be a string. --- tasks/haproxy_networks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/haproxy_networks.yml b/tasks/haproxy_networks.yml index 7f30c73..6486bb8 100644 --- a/tasks/haproxy_networks.yml +++ b/tasks/haproxy_networks.yml @@ -12,7 +12,7 @@ docker_compose: project_name: haproxy_haproxy definition: - version: 3 + version: '3' services: haproxy_haproxy: networks: '{{ docker_swarm_haproxy_networks }}' @@ -22,7 +22,7 @@ docker_compose: project_name: haproxy_haproxy definition: - version: 3 + version: '3' services: haproxy_haproxy: networks: '{{ docker_swarm_haproxy_additional_networks }}'