Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .templates/deconz/service.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
deconz:
image: marthoc/deconz
container_name: deconz
restart: unless-stopped
network_mode: bridge
ports:
- '8090:80'
- '4439:443'
- '5901:5900'
volumes:
- ./volumes/deconz/:/root/.local/share/dresden-elektronik/deCONZ
#devices:
#ConBee II uncomment next line
#- /dev/ttyACM0
#ConBee uncomment next line
#- /dev/ttyUSB0
#RaspBee uncomment next line
#- /dev/ttyAMA0 or /dev/ttyS0
environment:
- DECONZ_VNC_MODE=1
- DECONZ_VNC_PASSWORD=changeme
- DEBUG_INFO=1
- DEBUG_APS=0
- DEBUG_ZCL=0
- DEBUG_ZDP=0
- DEBUG_OTAU=0
1 change: 1 addition & 0 deletions .templates/nodered/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ node_selection=$(whiptail --title "Node-RED nodes" --checklist --separate-output
"node-red-contrib-owntracks" " " "OFF" \
"node-red-contrib-alexa-local" " " "OFF" \
"node-red-contrib-heater-controller" " " "OFF" \
"node-red-contrib-deconz" " " "OFF" \
3>&1 1>&2 2>&3)

##echo "$check_selection"
Expand Down
3 changes: 2 additions & 1 deletion menu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ declare -A cont_array=(
[adminer]="Adminer"
[openhab]="openHAB"
[zigbee2mqtt]="zigbee2mqtt"
[deconz]="deCONZ"
[pihole]="Pi-Hole"
[plex]="Plex media server"
[tasmoadmin]="TasmoAdmin"
Expand All @@ -33,7 +34,6 @@ declare -A cont_array=(
[gitea]="Gitea"
)


declare -a armhf_keys=(
"portainer"
"nodered"
Expand All @@ -48,6 +48,7 @@ declare -a armhf_keys=(
"adminer"
"openhab"
"zigbee2mqtt"
"deconz"
"pihole"
"plex"
"tasmoadmin"
Expand Down