Skip to content

Commit bbd652b

Browse files
committed
docker(install): increase dockerd startup timeout
Signed-off-by: CrazyMax <[email protected]>
1 parent e85f11c commit bbd652b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docker/assets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ probes:
293293
#!/bin/bash
294294
set -eux -o pipefail
295295
# Don't check for docker CLI as it's not installed in the VM (only on the host)
296-
if ! timeout 30s bash -c "until pgrep dockerd; do sleep 3; done"; then
296+
if ! timeout 60s bash -c "until pgrep dockerd; do sleep 3; done"; then
297297
echo >&2 "dockerd is not running"
298298
exit 1
299299
fi

0 commit comments

Comments
 (0)