Skip to content

Commit e004f4f

Browse files
authored
Merge pull request gcgarner#65 from Paraphraser/20200610-templates-quotePorts
Harmonises service.yml file usage of quote marks around port mappings
2 parents 70972ef + ec301bc commit e004f4f

File tree

17 files changed

+20
-29
lines changed

17 files changed

+20
-29
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/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-

.templates/nextcloud/service.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
image: nextcloud
33
container_name: nextcloud
44
ports:
5-
- 9321:80
5+
- "9321:80"
66
volumes:
77
- ./volumes/nextcloud/html:/var/www/html
88
restart: unless-stopped
@@ -22,4 +22,3 @@
2222
- MYSQL_DATABASE=nextcloud
2323
- MYSQL_USER=nextcloud
2424
restart: unless-stopped
25-

.templates/nodered/service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
privileged: true
77
env_file: ./services/nodered/nodered.env
88
ports:
9-
- 1880:1880
9+
- "1880:1880"
1010
volumes:
1111
- ./volumes/nodered/data:/data

0 commit comments

Comments
 (0)