Skip to content
Closed
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:
- '80:80'
- '443:443'
- '5901:5900'
volumes:
- ./volumes/deconz/:/root/.local/share/dresden-elektronik/deCONZ
devices:
#ConBee II:
- /dev/ttyACM0
#ConBee:
# - /dev/ttyUSB0
#RaspBee:
# - /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 @@ -15,6 +15,7 @@ declare -A cont_array=(
[adminer]="Adminer"
[openhab]="openHAB"
[zigbee2mqtt]="zigbee2mqtt"
[deconz]="deCONZ"
[pihole]="Pi-Hole"
[plex]="Plex media server"
[tasmoadmin]="TasmoAdmin"
Expand All @@ -31,7 +32,7 @@ declare -A cont_array=(

)
declare -a armhf_keys=("portainer" "nodered" "influxdb" "grafana" "mosquitto" "telegraf" "mariadb" "postgres"
"adminer" "openhab" "zigbee2mqtt" "pihole" "plex" "tasmoadmin" "rtl_433" "espruinohub"
"adminer" "openhab" "zigbee2mqtt" "deconz" "pihole" "plex" "tasmoadmin" "rtl_433" "espruinohub"
"motioneye" "webthings_gateway" "blynk_server" "nextcloud" "diyhue" "homebridge" "python")

sys_arch=$(uname -m)
Expand Down