Remove duplicate Docker socket mount from workflow
Some checks failed
Build and Push Docker Image / docker (push) Failing after 12s

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 <noreply@anthropic.com>
This commit is contained in:
Matt 2025-10-29 14:26:49 +01:00
parent 41f8fc1c76
commit aec179ec49

View File

@ -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