Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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

2 changes: 2 additions & 0 deletions menu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ declare -A cont_array=(
[homebridge]="Homebridge"
[python]="Python 3"
[gitea]="Gitea"
[domoticz]="Domoticz"
)

declare -a armhf_keys=(
Expand Down Expand Up @@ -56,6 +57,7 @@ declare -a armhf_keys=(
"homebridge"
"python"
"gitea"
"domoticz"
# add yours here
)
sys_arch=$(uname -m)
Expand Down