From d2542879f75a643c853b47c7b2874d06cc353fd9 Mon Sep 17 00:00:00 2001 From: rlabadmin Date: Thu, 23 Apr 2026 14:32:00 +0200 Subject: [PATCH] =?UTF-8?q?Drop=20explicit=20docker.sock=20mount=20?= =?UTF-8?q?=E2=80=94=20runner=20auto-injects=20it?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ba-runner already binds /var/run/docker.sock into every job container, so declaring it in the workflow caused a Duplicate mount point error. Keep the docker:27-cli image; let the runner provide the socket. Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitea/workflows/flow.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitea/workflows/flow.yml b/.gitea/workflows/flow.yml index 8482a45..befc718 100644 --- a/.gitea/workflows/flow.yml +++ b/.gitea/workflows/flow.yml @@ -32,8 +32,6 @@ jobs: runs-on: ubuntu-latest container: image: docker:27-cli - volumes: - - /var/run/docker.sock:/var/run/docker.sock outputs: image_tag: ${{ steps.meta.outputs.tag }} steps: