From c8c8523400177e2cd878fd23e702dfcde7543302 Mon Sep 17 00:00:00 2001 From: X9 Dev Date: Fri, 29 May 2026 17:54:08 +0200 Subject: [PATCH] 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 --- runner-config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runner-config.yml b/runner-config.yml index 3176071..9a7ef2f 100644 --- a/runner-config.yml +++ b/runner-config.yml @@ -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