diff --git a/.templates/deconz/service.yml b/.templates/deconz/service.yml new file mode 100644 index 00000000..9199adc3 --- /dev/null +++ b/.templates/deconz/service.yml @@ -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 diff --git a/.templates/nodered/build.sh b/.templates/nodered/build.sh index ba5ab374..81685931 100755 --- a/.templates/nodered/build.sh +++ b/.templates/nodered/build.sh @@ -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" diff --git a/menu.sh b/menu.sh index c9506915..fc611972 100755 --- a/menu.sh +++ b/menu.sh @@ -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" @@ -33,7 +34,6 @@ declare -A cont_array=( [gitea]="Gitea" ) - declare -a armhf_keys=( "portainer" "nodered" @@ -48,6 +48,7 @@ declare -a armhf_keys=( "adminer" "openhab" "zigbee2mqtt" + "deconz" "pihole" "plex" "tasmoadmin"