From 4a3f1f67429a4581f0df114c92b09e8ee558e436 Mon Sep 17 00:00:00 2001 From: Jose Quaresma Date: Wed, 28 May 2025 15:27:15 +0100 Subject: [PATCH] lmp/build-sdk-container: restore the timeout The issue was in the DOCKER_HOST and so we can restore the previous timeout to 12 seconds. Signed-off-by: Jose Quaresma --- lmp/build-sdk-container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lmp/build-sdk-container.sh b/lmp/build-sdk-container.sh index e8c3adfe..1da0768d 100755 --- a/lmp/build-sdk-container.sh +++ b/lmp/build-sdk-container.sh @@ -9,7 +9,7 @@ status Launching dockerd unset DOCKER_HOST /usr/local/bin/dockerd-entrypoint.sh --experimental --raw-logs >/archive/dockerd.log 2>&1 & for i in `seq 12 -1 0` ; do - sleep 5 + sleep 1 docker info >/dev/null 2>&1 && break if [ $i = 0 ] ; then status Timed out trying to connect to internal docker host