Skip to content

Commit 07837f7

Browse files
authored
Merge pull request #24 from DIYtechie/patch-1
Added deCONZ to stack
2 parents f75df7a + f3be535 commit 07837f7

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

.templates/deconz/service.yml

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

.templates/nodered/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
3535
"node-red-contrib-owntracks" " " "OFF" \
3636
"node-red-contrib-alexa-local" " " "OFF" \
3737
"node-red-contrib-heater-controller" " " "OFF" \
38+
"node-red-contrib-deconz" " " "OFF" \
3839
3>&1 1>&2 2>&3)
3940

4041
##echo "$check_selection"

menu.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ declare -A cont_array=(
1717
[adminer]="Adminer"
1818
[openhab]="openHAB"
1919
[zigbee2mqtt]="zigbee2mqtt"
20+
[deconz]="deCONZ"
2021
[pihole]="Pi-Hole"
2122
[plex]="Plex media server"
2223
[tasmoadmin]="TasmoAdmin"
@@ -33,7 +34,6 @@ declare -A cont_array=(
3334
[gitea]="Gitea"
3435
)
3536

36-
3737
declare -a armhf_keys=(
3838
"portainer"
3939
"nodered"
@@ -48,6 +48,7 @@ declare -a armhf_keys=(
4848
"adminer"
4949
"openhab"
5050
"zigbee2mqtt"
51+
"deconz"
5152
"pihole"
5253
"plex"
5354
"tasmoadmin"

0 commit comments

Comments
 (0)