Enum docker_api::opts::IpcMode
source · pub enum IpcMode {
None,
Private,
Shareable,
Container(String),
Host,
}
Expand description
IPC sharing mode for the container.
Variants§
None
“none”: own private IPC namespace, with /dev/shm not mounted
Private
“private”: own private IPC namespace
“shareable”: own private IPC namespace, with a possibility to share it with other containers
Container(String)
“container:<name|id>”: join another (shareable) container’s IPC namespace
Host
“host”: use the host system’s IPC namespace