mirror of
https://github.com/containers/podman.git
synced 2025-06-01 09:06:44 +08:00

I chose the one from podman-run, but reordered ns/private to put them in alphabetical order. Signed-off-by: Ed Santiago <santiago@redhat.com>
10 lines
480 B
Markdown
10 lines
480 B
Markdown
#### **--pid**=*mode*
|
|
|
|
Set the PID namespace mode for the container.
|
|
The default is to create a private PID namespace for the container.
|
|
|
|
- **container:**_id_: join another container's PID namespace;
|
|
- **host**: use the host's PID namespace for the container. Note the host mode gives the container full access to local PID and is therefore considered insecure;
|
|
- **ns:**_path_: join the specified PID namespace;
|
|
- **private**: create a new namespace for the container (default).
|