Remove duplicate docker.sock mount from config options

This commit is contained in:
2026-05-18 02:19:51 +01:00
parent 8ba20bf881
commit 3293630e3a
+3 -2
View File
@@ -8,9 +8,10 @@ runner:
capacity: 2 capacity: 2
container: container:
# Pass the host Docker socket into every job container # Use the host Docker socket for job containers
docker_host: unix:///var/run/docker.sock docker_host: unix:///var/run/docker.sock
options: -v /var/run/docker.sock:/var/run/docker.sock # Note: do NOT add -v /var/run/docker.sock here — the compose already mounts it
# and duplicating it causes "Duplicate mount point" errors
privileged: true privileged: true
valid_volumes: valid_volumes:
- /var/run/docker.sock - /var/run/docker.sock