-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_example.json
More file actions
53 lines (53 loc) · 1.15 KB
/
config_example.json
File metadata and controls
53 lines (53 loc) · 1.15 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
{
"organization": "Picasoft",
"merge": true,
"hosts": [{
"name": "<host1>",
"url": "<host1>.tld",
"port": 2376,
"exclude": [
"<container_name>"
],
"tls_config": {
"ca_cert": "/CONFIG/ca.pem",
"cert": "/CONFIG/cert.pem",
"key": "/CONFIG/key.pem"
}
},
{
"name": "<host2>",
"url": "localhost",
"default_network": "docker_default"
}
],
"hide": ["volumes", "binds"],
"color_scheme": {
"traefik": "#edb591",
"port": "#86c49b",
"link": "#75e9cd",
"image": "#e1efe6",
"container": "#ffffff",
"network": "#ffffff",
"volume": "#819cd9",
"bind_mount": "#b19cd9",
"host": "#c7ceea",
"dark_text": "#32384f",
"bright_text": "#ffffff"
},
"actions": [{
"type": "webdav",
"hostname": "https://example.com/nextcloud/remote.php/dav/files/<login>",
"login": "login",
"password": "password",
"remote_path": "graph_output"
},
{
"type": "stfp",
"hostname": "sftp.tld",
"port": 2222,
"login": "login",
"password": "password",
"remote_path": "graph_output"
}
]
}