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 a0a08b60..57f255da 100755 --- a/menu.sh +++ b/menu.sh @@ -45,6 +45,7 @@ declare -A cont_array=( [homebridge]="Homebridge" [python]="Python 3" [gitea]="Gitea" + [domoticz]="Domoticz" [dozzle]="Dozzle" ) @@ -76,6 +77,7 @@ declare -a armhf_keys=( "homebridge" "python" "gitea" + "domoticz" "dozzle" # add yours here )