Skip to content

Commit 7457896

Browse files
authored
Merge pull request #5 from SensorsIot/pr/132
added support for domoticz
2 parents 7a1fba9 + 2a59436 commit 7457896

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

.templates/domoticz/domoticz.env

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
PUID=1000
2+
PGID=1000
3+
#TZ=
4+
#WEBROOT=domoticz #optional

.templates/domoticz/service.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
domoticz:
2+
container_name: domoticz
3+
image: linuxserver/domoticz:stable
4+
ports:
5+
- "8080:8080"
6+
- "6144:6144"
7+
- "1443:1443"
8+
volumes:
9+
- ./volumes/domoticz/data:/config
10+
env_file:
11+
- ./services/domoticz/domoticz.env
12+
restart: unless-stopped
13+
network_mode: bridge
14+

menu.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ declare -A cont_array=(
4545
[homebridge]="Homebridge"
4646
[python]="Python 3"
4747
[gitea]="Gitea"
48+
[domoticz]="Domoticz"
4849
[dozzle]="Dozzle"
4950
)
5051

@@ -76,6 +77,7 @@ declare -a armhf_keys=(
7677
"homebridge"
7778
"python"
7879
"gitea"
80+
"domoticz"
7981
"dozzle"
8082
# add yours here
8183
)

0 commit comments

Comments
 (0)