Skip to content

Commit fc53a7a

Browse files
committed
lmp/build-sdk-container: incrase the dockerd launch timeout
The current time is not enough as can be seen, so it is better to increase it to 60 seconds. == 2025-05-27 21:12:51 Launching dockerd == 2025-05-27 21:13:15 Timed out trying to connect to internal docker host Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io>
1 parent ddd0339 commit fc53a7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lmp/build-sdk-container.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ LATEST=${LATEST:-latest}
77

88
status Launching dockerd
99
/usr/local/bin/dockerd-entrypoint.sh --experimental --raw-logs >/archive/dockerd.log 2>&1 &
10-
for i in `seq 12` ; do
11-
sleep 2
10+
for i in `seq 12 -1 0` ; do
11+
sleep 5
1212
docker info >/dev/null 2>&1 && break
13-
if [ $i = 12 ] ; then
13+
if [ $i = 0 ] ; then
1414
status Timed out trying to connect to internal docker host
1515
exit 1
1616
fi

0 commit comments

Comments
 (0)