From aec179ec49426c841252ade9199d4fd9bef6f156 Mon Sep 17 00:00:00 2001 From: Matt Date: Wed, 29 Oct 2025 14:26:49 +0100 Subject: [PATCH] Remove duplicate Docker socket mount from workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Runner already mounts /var/run/docker.sock automatically. Keep only --privileged flag to allow socket access. Fixes: Error response from daemon: Duplicate mount point 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitea/workflows/build-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build-deploy.yml b/.gitea/workflows/build-deploy.yml index 08fd821..f81a048 100644 --- a/.gitea/workflows/build-deploy.yml +++ b/.gitea/workflows/build-deploy.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest container: image: ghcr.io/catthehacker/ubuntu:full-22.04 - options: --privileged -v /var/run/docker.sock:/var/run/docker.sock + options: --privileged steps: - name: Checkout code