From 5512790d5a3974cca6e1f06d889db7559e2cee78 Mon Sep 17 00:00:00 2001 From: Marcel Date: Sat, 9 May 2026 16:01:24 +0200 Subject: [PATCH] ci: track act_runner config with Docker socket mount Documents the NAS runner configuration needed for Testcontainers. Must be deployed to the runner host alongside the act_runner binary. Co-Authored-By: Claude Sonnet 4.6 --- runner-config.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 runner-config.yaml diff --git a/runner-config.yaml b/runner-config.yaml new file mode 100644 index 00000000..2110e800 --- /dev/null +++ b/runner-config.yaml @@ -0,0 +1,12 @@ +# runner-config.yaml — only the relevant section +container: + # passed as DOCKER_HOST inside the job container + docker_host: "unix:///var/run/docker.sock" + # whitelists the socket path so workflows can mount it + valid_volumes: + - "/var/run/docker.sock" + # appended to `docker run` when the runner spawns a job container + options: "-v /var/run/docker.sock:/var/run/docker.sock" + # keep network mode default (bridge) — Testcontainers handles its own networking + force_pull: false +