From 05973b50bd7065d9bd8d13e65d32a4ac280d7dab Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Tue, 24 Mar 2026 13:14:43 -0500 Subject: [PATCH] fix: remove duplicate docker.sock mount in runner config The socket is already mounted via the pod volume mount; specifying it again in container.options causes 'Duplicate mount point' on job containers. --- servers/legion/apps/gitea-runner.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/servers/legion/apps/gitea-runner.yaml b/servers/legion/apps/gitea-runner.yaml index 5d01b95..2f4d1c0 100644 --- a/servers/legion/apps/gitea-runner.yaml +++ b/servers/legion/apps/gitea-runner.yaml @@ -36,7 +36,6 @@ spec: timeout: 3h container: network: bridge - options: "-v /var/run/docker.sock:/var/run/docker.sock" docker_host: "unix:///var/run/docker.sock" force_pull: false EOF