From a3e46ec83e9c935b4a2e2b4f0fe7bfa354dc8fec Mon Sep 17 00:00:00 2001 From: David Gwilliam Date: Sat, 16 May 2026 20:38:49 -0700 Subject: [PATCH] fix: remove duplicate docker socket mount from PR workflow The runner already passes through its own docker socket mount to job containers. Specifying it again in the workflow causes a duplicate mount point error. --- .gitea/workflows/pr.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index 5f54b6b..d0252e2 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -39,7 +39,6 @@ jobs: options: --user root volumes: - /apps:/apps - - /var/run/docker.sock:/var/run/docker.sock steps: - name: Checkout code