-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.json
52 lines (52 loc) · 1.08 KB
/
run.json
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
{
"ImageConfig": {
"Entrypoint": null,
"Cmd": ["/bin/sleep", "inf"],
"Env": ["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"],
"WorkingDir": "/",
"User": "nobody"
},
"ExecOverride": null,
"ExtraEnv": null,
"UserOverride": null,
"CmdOverride": null,
"IPConfigs": [
{
"Gateway": "172.17.0.1/24",
"IP": "172.17.0.2/24",
"Mask": 24
}
],
"Tty": true,
"Hostname": "container-1",
"Mounts": null,
"RootDevice": null,
"EtcResolv": {
"Nameservers": [
"8.8.8.8",
"8.8.4.4"
]
},
"EtcHosts": [
{
"Host": "localhost",
"IP": "127.0.0.1",
"Desc": "Local loopback"
},
{
"Host": "container-1",
"IP": "172.17.0.2",
"Desc": "Container hostname"
}
],
"files": [
{
"guest_path": "file1.txt",
"raw_value": "eyJrZXkiOiAidmFsdWUxIn0="
},
{
"guest_path": "file2.txt",
"raw_value": "eyJrZXkiOiAidmFsdWUyIn0="
}
]
}