Merge pull request #12 from mrunalp/userns
Adds user namespace to the list of namespaces
This commit is contained in:
commit
6a1652b00a
|
@ -8,7 +8,8 @@
|
|||
"network",
|
||||
"mount",
|
||||
"ipc",
|
||||
"uts"
|
||||
"uts",
|
||||
"user"
|
||||
],
|
||||
```
|
||||
|
||||
|
@ -26,6 +27,8 @@ For Linux the mapping is
|
|||
|
||||
* uts -> uts Hostname and NIS domain name are specific to the container
|
||||
|
||||
* user -> user uids/gids on the host are mapped to different uids/gids in the container, so root in a container could be a non-root, unprivileged uid on the host
|
||||
|
||||
## Linux Control groups
|
||||
|
||||
## Linux Seccomp
|
||||
|
|
Loading…
Reference in New Issue