Skip to content
Open
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
4 changes: 4 additions & 0 deletions .templates/domoticz/domoticz.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
PUID=1000
PGID=1000
#TZ=
#WEBROOT=domoticz #optional
14 changes: 14 additions & 0 deletions .templates/domoticz/service.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
domoticz:
container_name: domoticz
image: linuxserver/domoticz:stable
ports:
- "8080:8080"
- "6144:6144"
- "1443:1443"
volumes:
- ./volumes/domoticz/data:/config
env_file:
- ./services/domoticz/domoticz.env
restart: unless-stopped
network_mode: bridge

3 changes: 2 additions & 1 deletion menu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@ declare -A cont_array=(
[diyhue]="diyHue"
[homebridge]="Homebridge"
[python]="Python 3"
[domoticz]="Domoticz"

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

sys_arch=$(uname -m)

Expand Down