-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzigbee2mqtt.json
82 lines (82 loc) · 2.81 KB
/
zigbee2mqtt.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
75
76
77
78
79
80
81
82
{
"zigbee2mqtt": {
"description": "Zigbee to MQTT bridge, get rid of your proprietary Zigbee bridges",
"ui": {
"slug": ""
},
"website": "https://www.zigbee2mqtt.io/",
"version": "1.0",
"containers": {
"mosquitto": {
"image": "eclipse-mosquitto",
"tag": "2.0",
"launch_order": 1,
"ports": {
"1883": {
"label": "MQTT",
"description": "Port to run the service on. Defaults to 1883",
"host_default": 1883
}
},
"cmd_arguments": [
[
"mosquitto",
""
],
[
"-c",
"/mosquitto-no-auth.conf"
]
],
"environment": {
"TZ": {
"label": "Timezone",
"description": "List of available values at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List"
}
},
"volumes": {
"/mosquitto": {
"label": "mosquitto Data",
"description": "Share containing the mosquitto data."
}
}
},
"zigbee2mqtt": {
"image": "koenkk/zigbee2mqtt",
"launch_order": 2,
"opts": [
[
"--volume",
"/run/udev:/run/udev:ro"
]
],
"ports": {
"8080": {
"label": "Frontend",
"description": "Port for the zigbee2mqtt frontend",
"host_default": 8080,
"ui": true
}
},
"volumes": {
"/app/data": {
"label": "zigbee2mqtt Configuration",
"description": "Share containing the zigbee2mqtt data."
}
},
"environment": {
"TZ": {
"label": "Timezone",
"description": "List of available values at https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List"
}
},
"devices": {
"/dev/ttyACM0": {
"description": "Zigbee stick serial port. Usually /dev/ttyACM0",
"label": "Zigbee"
}
}
}
}
}
}