fix: mount Docker socket into job containers via runner container options
Job containers need access to the host Docker socket to run docker build/push commands. Adding -v /var/run/docker.sock:/var/run/docker.sock to container options so docker CLI in job containers can reach the host Docker daemon. Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
parent
1d525e6f5a
commit
3dbf0758d1
1 changed files with 1 additions and 1 deletions
|
|
@ -20,4 +20,4 @@ data:
|
||||||
container:
|
container:
|
||||||
network: host
|
network: host
|
||||||
privileged: false
|
privileged: false
|
||||||
options:
|
options: -v /var/run/docker.sock:/var/run/docker.sock
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue