ci(runner): mount docker socket into job containers

Set container.docker_host to "" (auto-detect) instead of "-" so workflow
steps can reach the docker daemon - fixes the "Update deploy.json" step
that does `docker exec xetup-web`.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
X9 Dev 2026-05-29 17:54:08 +02:00
parent 8a7fc109e2
commit c8c8523400

View file

@ -17,5 +17,7 @@ container:
privileged: false
valid_volumes:
- '**'
docker_host: "-"
# Auto-detect and mount the host docker socket into job containers so steps
# like "Update deploy.json" can `docker exec xetup-web`. ("-" disabled it.)
docker_host: ""
force_pull: false