-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworking.container
More file actions
47 lines (40 loc) · 925 Bytes
/
working.container
File metadata and controls
47 lines (40 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "full_example",
"nice": 10,
"user": "nobody",
"group": "nogroup",
"namespaces": ["net", "ipc", "mount", "pid", "uname"],
"io": {
"class": "best_effort",
"priority": 7
},
"mounts": [
{ "target": "/proc", "source": "none", "fstype": "proc", "flags": "", "options": "" },
{ "target": "/sys", "source": "none", "fstype": "sysfs", "flags": "", "options": "" }
],
"cgroups": {
"cpu": {
"shares": 1024
},
"cpuset": {
"cpus": "0",
"mems": "0"
}
},
"capabilities": ["net_admin", "net_bind_service", "net_raw", "setgid",
"setuid", "sys_ptrace"],
"flags": ["noroot"],
"ulimits": {
"rss": { "hard": 134217728, "soft": 67108864 }
},
"chroot": "/tmp/full_example",
"setup_cmds": [
"debootstrap wheezy $CHROOT http://ftp.debian.org/debian"
],
"environment": {
"PATH": "/usr/bin:/bin:/usr/local/bin",
"HOME": "/",
"USER": "nobody"
},
"command_line": "/bin/bash"
}