fix(runner): redirect dockerd logs as root
test / shell (pull_request) Successful in 37s
test / python (pull_request) Successful in 1m13s
test / go (pull_request) Successful in 3m9s

This commit is contained in:
2026-09-21 16:20:02 +00:00
parent d776fa71e9
commit 0bf39b4751
+2 -3
View File
@@ -42,10 +42,9 @@ if [[ -f /sys/fs/cgroup/cgroup.controllers ]]; then
'
fi
sudo nohup dockerd \
sudo sh -c 'exec nohup dockerd "$@" >/tmp/dockerd.log 2>&1' sh \
--host=unix:///var/run/docker.sock \
--storage-driver="$storage_driver" \
>/tmp/dockerd.log 2>&1 &
--storage-driver="$storage_driver" &
printf '%s\n' 'waiting for job Docker daemon'
for ((attempt = 0; attempt < wait_seconds; attempt++)); do
if docker info >/dev/null 2>&1; then