IPC=host #2697
Locked
mattvb91
started this conversation in
Image configuration
IPC=host
#2697
Replies: 2 comments 2 replies
-
Hello @mattvb91 , how do you use docker in your workflow? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Below are examples of 3 possible ways to run Docker container with custom options jobs:
job:
# via run: step
steps:
- name: Run docker container
run: docker run --ipc=host ubuntu:latest
# via services:
services:
ubuntu:
image: ubuntu
options: --ipc=host
# via container:
container:
image: ubuntu:latest
options: --ipc=host Reference: |
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
-
This may not be the right place but im trying to figure out how to set
--ipc=host
through my actions?https://docs.docker.com/engine/reference/run/#ipc-settings---ipc
Beta Was this translation helpful? Give feedback.
All reactions