diff --git a/.templates/domoticz/domoticz.env b/.templates/domoticz/domoticz.env new file mode 100644 index 00000000..21117deb --- /dev/null +++ b/.templates/domoticz/domoticz.env @@ -0,0 +1,4 @@ +PUID=1000 +PGID=1000 +#TZ= +#WEBROOT=domoticz #optional diff --git a/.templates/domoticz/service.yml b/.templates/domoticz/service.yml new file mode 100644 index 00000000..96a9d453 --- /dev/null +++ b/.templates/domoticz/service.yml @@ -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 + diff --git a/menu.sh b/menu.sh index 6c11d62f..5d24a4f9 100755 --- a/menu.sh +++ b/menu.sh @@ -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)