specs: add json notation

Signed-off-by: Lai Jiangshan <jiangshanlai@gmail.com>
This commit is contained in:
Lai Jiangshan 2015-07-26 16:08:26 +08:00
parent 5c98addb2b
commit 2e186c62c3
1 changed files with 4 additions and 4 deletions

View File

@ -97,7 +97,7 @@ in [the man page](http://man7.org/linux/man-pages/man7/capabilities.7.html)
sysctl allows kernel parameters to be modified at runtime for the container.
For more information, see [the man page](http://man7.org/linux/man-pages/man8/sysctl.8.html)
```
```json
"sysctl": {
"net.ipv4.ip_forward": "1",
"net.core.somaxconn": "256"
@ -106,7 +106,7 @@ For more information, see [the man page](http://man7.org/linux/man-pages/man8/sy
## Linux rlimits
```
```json
"rlimits": [
{
"type": "RLIMIT_NPROC",
@ -120,7 +120,7 @@ rlimits allow setting resource limits. The type is from the values defined in [t
## Linux user namespace mappings
```
```json
"uidMappings": [
{
"hostID": 1000,
@ -142,7 +142,7 @@ uid/gid mappings describe the user namespace mappings from the host to the conta
## Rootfs Mount Propagation
rootfsPropagation sets the rootfs's mount propagation. Its value is either slave, private, or shared. [The kernel doc](https://www.kernel.org/doc/Documentation/filesystems/sharedsubtree.txt) has more information about mount propagation.
```
```json
"rootfsPropagation": "slave",
```