Skip to content

Commit 818063f

Browse files
authored
adding deconz docker compose setup
1 parent 1f146f0 commit 818063f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.templates/deconz/service.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
deconz:
2+
image: marthoc/deconz
3+
container_name: deconz
4+
restart: unless-stopped
5+
network_mode: bridge
6+
ports:
7+
- '80:80'
8+
- '443:443'
9+
- '5901:5901'
10+
volumes:
11+
- ./volumes/deconz/:/root/.local/share/dresden-elektronik/deCONZ
12+
devices:
13+
#ConBee II:
14+
- /dev/ttyACM0
15+
#ConBee:
16+
# - /dev/ttyUSB0
17+
#RaspBee:
18+
# - /dev/ttyAMA0 or /dev/ttyS0
19+
environment:
20+
- DECONZ_WEB_PORT=80
21+
- DECONZ_WS_PORT=443
22+
- DECONZ_VNC_MODE=1
23+
- DECONZ_VNC_PORT=5901
24+
- DECONZ_VNC_PASSWORD=changeme
25+
- DEBUG_INFO=1
26+
- DEBUG_APS=0
27+
- DEBUG_ZCL=0
28+
- DEBUG_ZDP=0
29+
- DEBUG_OTAU=0

0 commit comments

Comments
 (0)