feat: runner 默认提供 Docker 并修复镜像发布工具链 #45

Merged
panxiao81 merged 3 commits from fix/publish-toolchains into main 2026-09-21 16:24:18 +00:00
Showing only changes of commit 0bf39b4751 - Show all commits
+2 -3
View File
@@ -42,10 +42,9 @@ if [[ -f /sys/fs/cgroup/cgroup.controllers ]]; then
' '
fi fi
sudo nohup dockerd \ sudo sh -c 'exec nohup dockerd "$@" >/tmp/dockerd.log 2>&1' sh \
--host=unix:///var/run/docker.sock \ --host=unix:///var/run/docker.sock \
--storage-driver="$storage_driver" \ --storage-driver="$storage_driver" &
>/tmp/dockerd.log 2>&1 &
printf '%s\n' 'waiting for job Docker daemon' printf '%s\n' 'waiting for job Docker daemon'
for ((attempt = 0; attempt < wait_seconds; attempt++)); do for ((attempt = 0; attempt < wait_seconds; attempt++)); do
if docker info >/dev/null 2>&1; then if docker info >/dev/null 2>&1; then