Created
October 6, 2017 19:08
-
-
Save goyalankit/4382be41c66579ad7833a983e634aa32 to your computer and use it in GitHub Desktop.
Runc rc4 config json: https://github.com/opencontainers/runc/issues/1605
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ociVersion": "1.0.0", | |
"process": { | |
"terminal": false, | |
"user": { | |
"uid": 0, | |
"gid": 0 | |
}, | |
"args": [ | |
"sh" | |
], | |
"env": [ | |
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", | |
"TERM=xterm" | |
], | |
"cwd": "/", | |
"capabilities": { | |
"bounding": [ | |
"CAP_AUDIT_WRITE", | |
"CAP_KILL", | |
"CAP_NET_BIND_SERVICE" | |
], | |
"effective": [ | |
"CAP_AUDIT_WRITE", | |
"CAP_KILL", | |
"CAP_NET_BIND_SERVICE" | |
], | |
"inheritable": [ | |
"CAP_AUDIT_WRITE", | |
"CAP_KILL", | |
"CAP_NET_BIND_SERVICE" | |
], | |
"permitted": [ | |
"CAP_AUDIT_WRITE", | |
"CAP_KILL", | |
"CAP_NET_BIND_SERVICE" | |
], | |
"ambient": [ | |
"CAP_AUDIT_WRITE", | |
"CAP_KILL", | |
"CAP_NET_BIND_SERVICE" | |
] | |
}, | |
"rlimits": [ | |
{ | |
"type": "RLIMIT_NOFILE", | |
"hard": 1024, | |
"soft": 1024 | |
} | |
], | |
"noNewPrivileges": true | |
}, | |
"root": { | |
"path": "rootfs", | |
"readonly": true | |
}, | |
"hostname": "runc", | |
"mounts": [ | |
{ | |
"destination": "/proc", | |
"type": "proc", | |
"source": "proc" | |
}, | |
{ | |
"source": "/bin", | |
"destination": "/bin", | |
"type": "bind", | |
"options": [ | |
"nodev", | |
"nosuid", | |
"ro", | |
"rbind" | |
] | |
}, | |
{ | |
"destination": "/dev", | |
"type": "tmpfs", | |
"source": "tmpfs", | |
"options": [ | |
"nosuid", | |
"strictatime", | |
"mode=755", | |
"size=65536k" | |
] | |
}, | |
{ | |
"destination": "/dev/pts", | |
"type": "devpts", | |
"source": "devpts", | |
"options": [ | |
"nosuid", | |
"noexec", | |
"newinstance", | |
"ptmxmode=0666", | |
"mode=0620", | |
"gid=5" | |
] | |
}, | |
{ | |
"destination": "/dev/shm", | |
"type": "tmpfs", | |
"source": "shm", | |
"options": [ | |
"nosuid", | |
"noexec", | |
"nodev", | |
"mode=1777", | |
"size=65536k" | |
] | |
}, | |
{ | |
"destination": "/dev/mqueue", | |
"type": "mqueue", | |
"source": "mqueue", | |
"options": [ | |
"nosuid", | |
"noexec", | |
"nodev" | |
] | |
}, | |
{ | |
"destination": "/sys", | |
"type": "sysfs", | |
"source": "sysfs", | |
"options": [ | |
"nosuid", | |
"noexec", | |
"nodev", | |
"ro" | |
] | |
}, | |
{ | |
"destination": "/sys/fs/cgroup", | |
"type": "cgroup", | |
"source": "cgroup", | |
"options": [ | |
"nosuid", | |
"noexec", | |
"nodev", | |
"relatime", | |
"ro" | |
] | |
} | |
], | |
"linux": { | |
"cgroupsPath": "custom.slice:custom:app_1", | |
"resources": { | |
"cpu": { | |
"period": 200000, | |
"shares": 1024, | |
"quota": 200000 | |
}, | |
"devices": [ | |
{ | |
"allow": false, | |
"access": "rwm" | |
} | |
] | |
}, | |
"namespaces": [ | |
{ | |
"type": "pid" | |
}, | |
{ | |
"type": "network" | |
}, | |
{ | |
"type": "ipc" | |
}, | |
{ | |
"type": "uts" | |
}, | |
{ | |
"type": "mount" | |
} | |
], | |
"maskedPaths": [ | |
"/proc/kcore", | |
"/proc/latency_stats", | |
"/proc/timer_list", | |
"/proc/timer_stats", | |
"/proc/sched_debug", | |
"/sys/firmware" | |
], | |
"readonlyPaths": [ | |
"/proc/asound", | |
"/proc/bus", | |
"/proc/fs", | |
"/proc/irq", | |
"/proc/sys", | |
"/proc/sysrq-trigger" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment