-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
58 lines (58 loc) · 1.43 KB
/
config.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
53
54
55
56
57
58
{
"description": "TLS OU= based RBAC",
"documentation": "https://github.com/stevommmm/vlad",
"entrypoint": [
"/usr/local/bin/python",
"-u",
"/app/main.py"
],
"workdir": "/app",
"interface": {
"types": [
"docker.authz/1.0"
],
"socket": "vlad.sock"
},
"Mounts": [
{
"Description": "We interrogate /var/run/docker.sock for ID resolution",
"Source": "/var/run/docker.sock",
"Destination": "/var/run/docker.sock",
"Type": "bind",
"Options": [
"rbind"
]
},
{
"Description": "Pass in our socket",
"Source": "/run/docker/plugins/",
"Destination": "/run/docker/plugins/",
"Type": "bind",
"Options": [
"rbind",
"rw"
]
}
],
"Network": {
"Type": ""
},
"Env": [
{
"Name": "VLAD_BIND_MOUNT",
"Description": "Enable host bind mounts through service configurations",
"settable": [
"value"
],
"value": "false"
},
{
"Name": "VLAD_BIND_PORTS",
"Description": "Enable port binding outside the 30000-61000 range",
"settable": [
"value"
],
"value": "false"
}
]
}