From 00806e440258cebdabe87e3e9844dcf8ba6c606c Mon Sep 17 00:00:00 2001 From: Ctrl-F4 <48384485+Ctrl-F4@users.noreply.github.com> Date: Thu, 16 Jan 2020 15:17:49 +0100 Subject: [PATCH 1/3] Create domoticz.env added support for domoticz --- .templates/domoticz/domoticz.env | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .templates/domoticz/domoticz.env 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 From ff523e0fbbb526f978a3f51433db0aa6fcef0640 Mon Sep 17 00:00:00 2001 From: Ctrl-F4 <48384485+Ctrl-F4@users.noreply.github.com> Date: Thu, 16 Jan 2020 15:24:52 +0100 Subject: [PATCH 2/3] Create service.yml added support for domoticz --- .templates/domoticz/service.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .templates/domoticz/service.yml 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 + From 2c724e5983a4c2f4378794148d14651064645093 Mon Sep 17 00:00:00 2001 From: Ctrl-F4 <48384485+Ctrl-F4@users.noreply.github.com> Date: Thu, 16 Jan 2020 15:29:59 +0100 Subject: [PATCH 3/3] Update menu.sh added support for domoticz --- menu.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)