Replies: 1 comment 1 reply
-
|
Hi, I have a hacky solution. You can remove jobs:
test:
runs-on: ubuntu-latest
container:
image: something
options: --init --privileged
steps:
- name: umount
run: |
umount /var/run/docker.sock |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm looking for a way to remove the
docker.sockmount option.Is there any way to change it?
/usr/bin/docker create --name 071a40a5144a4b699ad0ff7d347bfc61_ubuntu1804_66c1b8 --label cf4eaa --workdir /__w/actions-playground/actions-playground --network github_network_538b2c9d584a455eadadd159b63aa24f -e "HOME=/github/home" -e GITHUB_ACTIONS=true -e CI=true - -v "/var/run/docker.sock":"/var/run/docker.sock" -v "/home/github/actions-runner/_work":"/__w" -v "/home/github/actions-runner/externals":"/__e":ro -v "/home/github/actions-runner/_work/_temp":"/__w/_temp" -v "/home/github/actions-runner/_work/_actions":"/__w/_actions" -v "/home/github/actions-runner/_work/_tool":"/__w/_tool" -v "/home/github/actions-runner/_work/_temp/_github_home":"/github/home" -v "/home/github/actions-runner/_work/_temp/_github_workflow":"/github/workflow" --entrypoint "tail" ubuntu:18.04 "-f" "/dev/null"Beta Was this translation helpful? Give feedback.
All reactions