Drop explicit docker.sock mount — runner auto-injects it
Build & Deploy / build (push) Failing after 2s
Build & Deploy / deploy (push) Has been skipped

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) <noreply@anthropic.com>
This commit is contained in:
rlabadmin
2026-04-23 14:32:00 +02:00
parent dde3f49571
commit d2542879f7
-2
View File
@@ -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: