-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (39 loc) · 958 Bytes
/
docker-compose.yml
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
version: '3'
services:
# mqtt broker
mosquitto:
build: mosquitto
restart: always
network_mode: host
ports:
- "1883:1883"
- "9001:9001"
# zigbee to mqtt bridge
zigbee2mqtt:
container_name: zigbee2mqtt
network_mode: host
image: koenkk/zigbee2mqtt:latest-dev
volumes:
- /zigbee2mqtt/zigbee2udp/configuration:/app/data
- /run/udev:/run/udev:ro
devices:
- /dev/ttyACM0:/dev/ttyACM0
restart: always
privileged: true
env_file:
- variables
# mqtt to udp bridge
zigbee2loxone:
network_mode: host
build: zigbee2loxone
restart: always
env_file:
- variables
loxone2zigbee:
network_mode: host
build: loxone2zigbee
ports:
- 4445
restart: always
env_file:
- variables