# act_runner config — passes Docker socket into job containers # so workflow steps can run docker login, docker build, etc. # # Place this file at /srv/act-runner/config.yaml on the host # before deploying the act_runner stack. runner: capacity: 2 container: # Use the host Docker socket for job containers docker_host: unix:///var/run/docker.sock # Note: do NOT add -v /var/run/docker.sock here — the compose already mounts it # and duplicating it causes "Duplicate mount point" errors privileged: true valid_volumes: - /var/run/docker.sock