From d981b9346f616c48db4ed46996bc9b229a13f6b3 Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Wed, 18 Mar 2026 04:34:41 +0800 Subject: [PATCH] Fix act_runner: add docker group (971) for socket access The runner process runs as non-root but needs access to the Docker socket owned by root:docker (GID 971). group_add grants it. Co-Authored-By: Claude Opus 4.6 (1M context) --- docker-compose.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker-compose.yaml b/docker-compose.yaml index d51d107..a6f2635 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -66,6 +66,8 @@ services: act_runner: image: gitea/act_runner:latest restart: unless-stopped + group_add: + - "971" volumes: - act_runner_data:/data - /var/run/docker.sock:/var/run/docker.sock