From 5d47ef43f8f549592f5f11d24ab51724a466b02e Mon Sep 17 00:00:00 2001 From: Matt Toohey Date: Tue, 3 Dec 2024 10:02:40 +1100 Subject: [PATCH] chore: sleep before retrying docker compose up (#3595) The comment had the right idea... --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 7fdd1d9c59..7b49f90e89 100644 --- a/Justfile +++ b/Justfile @@ -380,7 +380,7 @@ compose-up: if [ $status -ne 0 ] && [ -n "${CI-}" ]; then # CI fails regularly due to network issues. Retry once. echo "docker compose up failed, retrying in 3s..." - docker compose -p "ftl" $docker_compose_files up -d --wait + sleep 3 docker compose -p "ftl" $docker_compose_files up -d --wait fi