Some checks failed
CI / Unit & Component Tests (push) Has been cancelled
CI / OCR Service Tests (push) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
CI / Unit & Component Tests (pull_request) Failing after 4m21s
CI / OCR Service Tests (pull_request) Successful in 33s
CI / Backend Unit Tests (pull_request) Failing after 3m14s
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 <noreply@anthropic.com>
13 lines
493 B
YAML
13 lines
493 B
YAML
# 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
|
|
|