This repository was archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
73 lines (73 loc) · 1.5 KB
/
config.json
File metadata and controls
73 lines (73 loc) · 1.5 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"root": {
"path": "rootfs"
},
"process": {
"cwd": "/",
"env": [
"PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"TERM=xterm"
],
"args": [
"bash"
],
"user": {
"uid": 0,
"gid": 0
}
},
"mounts": [
{
"destination": "/proc",
"type": "proc",
"source": "proc"
}
],
"hostname": "fu-asus",
"linux": {
"uidMappings": [
{
"hostID": 0,
"containerID": 0,
"size": 1
}
],
"gidMappings": [
{
"hostID": 0,
"containerID": 0,
"size": 1
}
],
"namespaces": [
{
"type": "pid"
},
{
"type": "network",
"path": "/var/run/netns/tiny-ce-0"
},
{
"type": "mount"
},
{
"type": "ipc"
},
{
"type": "uts"
}
],
"resources": {
"memory": {
"limit": 536870912,
"reservation": 536870912,
"swap": 536870912
},
"cpu": {
"shares": 1024,
"quota": 1000000,
"period": 500000
}
}
}
}