Make namespaces match runc

"mount" rather than "mnt", "network" rather than "net"

Signed-off-by: Julian Friedman <julz.friedman@uk.ibm.com>
This commit is contained in:
Julian Friedman 2015-09-04 19:12:05 +01:00
parent 527a3eec38
commit 3fd2530794
1 changed files with 3 additions and 3 deletions

View File

@ -15,11 +15,11 @@ If a path is specified, that particular file is used to join that type of namesp
"path": "/proc/1234/ns/pid"
},
{
"type": "net",
"type": "network",
"path": "/var/run/netns/neta"
},
{
"type": "mnt",
"type": "mount",
},
{
"type": "ipc",
@ -37,7 +37,7 @@ If a path is specified, that particular file is used to join that type of namesp
* **pid** processes inside the container will only be able to see other processes inside the same container.
* **network** the container will have its own network stack.
* **mnt** the container will have an isolated mount table.
* **mount** the container will have an isolated mount table.
* **ipc** processes inside the container will only be able to communicate to other processes inside the same
container via system level IPC.
* **uts** the container will be able to have its own hostname and domain name.