Skip to content

Commit 60c085d

Browse files
author
Slyke
committed
Merge branch 'master' into pr/93
2 parents d6e5592 + 02341d1 commit 60c085d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+128
-222
lines changed

.templates/adminer/service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
image: adminer
44
restart: unless-stopped
55
ports:
6-
- 9080:8080
6+
- "9080:8080"

.templates/blynk_server/service.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
container_name: blynk_server
44
restart: unless-stopped
55
ports:
6-
- 8180:8080
7-
- 8441:8441
8-
- 9443:9443
6+
- "8180:8080"
7+
- "8441:8441"
8+
- "9443:9443"
99
volumes:
1010
- ./volumes/blynk_server/data:/data
11-

.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+

.templates/dozzle/service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
restart: unless-stopped
55
network_mode: host
66
ports:
7-
- 8888:8080
7+
- "8888:8080"
88
volumes:
99
- /var/run/docker.sock:/var/run/docker.sock

.templates/grafana/service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
restart: unless-stopped
55
user: "0"
66
ports:
7-
- 3000:3000
7+
- "3000:3000"
88
env_file:
99
- ./services/grafana/grafana.env
1010
volumes:

.templates/influxdb/service.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
image: "influxdb:latest"
44
restart: unless-stopped
55
ports:
6-
- 8086:8086
7-
- 8083:8083
8-
- 2003:2003
6+
- "8086:8086"
7+
- "8083:8083"
8+
- "2003:2003"
99
env_file:
1010
- ./services/influxdb/influxdb.env
1111
volumes:

.templates/mariadb/service.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
volumes:
77
- ./volumes/mariadb/config:/config
88
ports:
9-
- 3306:3306
9+
- "3306:3306"
1010
restart: unless-stopped
11-

.templates/mosquitto/service.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@
1111
- ./volumes/mosquitto/pwfile:/mosquitto/pwfile
1212
- ./services/mosquitto/mosquitto.conf:/mosquitto/config/mosquitto.conf
1313
- ./services/mosquitto/filter.acl:/mosquitto/config/filter.acl
14-

.templates/motioneye/service.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
container_name: "motioneye"
44
restart: unless-stopped
55
ports:
6-
- 8765:8765
7-
- 8081:8081
6+
- "8765:8765"
7+
- "8081:8081"
88
volumes:
99
- /etc/localtime:/etc/localtime:ro
1010
- ./volumes/motioneye/etc_motioneye:/etc/motioneye
1111
- ./volumes/motioneye/var_lib_motioneye:/var/lib/motioneye
1212
#devices:
1313
# - "/dev/video0:/dev/video0"
14-

0 commit comments

Comments
 (0)