From 4193d63d23b525b16ad94a53594c66c0c9dc65f1 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sun, 17 Aug 2025 14:04:00 +0200 Subject: [PATCH] test: advertise locally to avoid multiple ip error --- tests/integration/helpers/docker.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/helpers/docker.bash b/tests/integration/helpers/docker.bash index 52d5b9c9..a8304890 100644 --- a/tests/integration/helpers/docker.bash +++ b/tests/integration/helpers/docker.bash @@ -2,7 +2,7 @@ _ensure_swarm() { if [ "$(docker info | grep Swarm | sed 's/Swarm: //g' | tr -d ' ')" == "inactive" ]; then - run docker swarm init + run docker swarm init --advertise-addr 127.0.0.1:2377 assert_success fi