-
Notifications
You must be signed in to change notification settings - Fork 472
/
Copy pathconfig.json
74 lines (74 loc) · 1.6 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "Zigbee2MQTT Edge",
"version": "edge",
"slug": "zigbee2mqtt_edge",
"description": "Development build of the Zigbee2MQTT add-on",
"uart": true,
"url": "https://github.com/zigbee2mqtt/hassio-zigbee2mqtt/tree/master/zigbee2mqtt-edge",
"startup": "application",
"services": [
"mqtt:need"
],
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"boot": "auto",
"init": false,
"ingress": true,
"timeout": 30,
"panel_icon": "mdi:zigbee",
"map": [
"share:rw",
"config:rw"
],
"ports": {
"8485/tcp": 8485,
"8099/tcp": null
},
"ports_description": {
"8485/tcp": "Socat tcp-listen port",
"8099/tcp": "Frontend tcp-listen port"
},
"options": {
"data_path": "/config/zigbee2mqtt",
"socat": {
"enabled": false,
"master": "pty,raw,echo=0,link=/tmp/ttyZ2M,mode=777",
"slave": "tcp-listen:8485,keepalive,nodelay,reuseaddr,keepidle=1,keepintvl=1,keepcnt=5",
"options": "-d -d",
"log": false
},
"mqtt": {},
"serial": {}
},
"schema": {
"zigbee_herdsman_debug": "bool?",
"data_path": "str",
"socat": {
"enabled": "bool?",
"master": "str?",
"slave": "str?",
"options": "str?",
"log": "bool?"
},
"mqtt": {
"server": "str?",
"ca": "str?",
"key": "str?",
"cert": "str?",
"user": "str?",
"password": "str?"
},
"serial": {
"port": "str?",
"adapter": "match(zstack|deconz|zigate|ezsp)?",
"baudrate": "int?",
"rtscts": "bool?"
}
},
"image": "zigbee2mqtt/zigbee2mqtt-edge-{arch}"
}