Skip to content

Commit 6e227c4

Browse files
authored
Merge pull request #713 from Paraphraser/20230614-yamllint-master
2023-06-14 yamllint - master branch - PR 1 of 2
2 parents 845d8b5 + af76548 commit 6e227c4

File tree

25 files changed

+150
-135
lines changed

25 files changed

+150
-135
lines changed

.templates/adguardhome/service.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ adguardhome:
33
image: adguard/adguardhome
44
restart: unless-stopped
55
environment:
6-
- TZ=Etc/UTC
6+
- TZ=${TZ:-Etc/UTC}
77
# enable host mode to activate DHCP server on ports 67/udp & 68/tcp+udp
88
# note that you must also disable all other ports if you enable host mode
99
# network_mode: host
@@ -28,6 +28,6 @@ adguardhome:
2828
# - "5443:5443/tcp"
2929
# - "5443:5443/udp"
3030
volumes:
31-
- ./volumes/adguardhome/workdir:/opt/adguardhome/work
32-
- ./volumes/adguardhome/confdir:/opt/adguardhome/conf
31+
- ./volumes/adguardhome/workdir:/opt/adguardhome/work
32+
- ./volumes/adguardhome/confdir:/opt/adguardhome/conf
3333

.templates/chronograf/service.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ chronograf:
33
image: chronograf:latest
44
restart: unless-stopped
55
environment:
6-
- TZ=Etc/UTC
7-
# see https://docs.influxdata.com/chronograf/v1.9/administration/config-options/
6+
- TZ=${TZ:-Etc/UTC}
7+
# see https://docs.influxdata.com/chronograf/v1.9/administration/config-options/
88
- INFLUXDB_URL=http://influxdb:8086
9-
# - INFLUXDB_USERNAME=
10-
# - INFLUXDB_PASSWORD=
11-
# - INFLUXDB_ORG=
12-
# - KAPACITOR_URL=http://kapacitor:9092
9+
# - INFLUXDB_USERNAME=
10+
# - INFLUXDB_PASSWORD=
11+
# - INFLUXDB_ORG=
12+
# - KAPACITOR_URL=http://kapacitor:9092
1313
ports:
1414
- "8888:8888"
1515
volumes:
1616
- ./volumes/chronograf:/var/lib/chronograf
1717
depends_on:
1818
- influxdb
19-
# - kapacitor
19+
# - kapacitor
2020

.templates/diyhue/service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ diyhue:
1010
- IP=%LAN_IP_Address%
1111
- MAC=%LAN_MAC_Address%
1212
volumes:
13-
- ./volumes/diyhue:/opt/hue-emulator/export
13+
- ./volumes/diyhue:/opt/hue-emulator/export
1414
restart: unless-stopped
1515

.templates/docker-compose-base.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
---
2+
13
version: '3.6'
24

35
networks:

.templates/dozzle/service.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dozzle:
22
container_name: dozzle
3-
image: amir20/dozzle:latest
3+
image: amir20/dozzle:latest
44
restart: unless-stopped
55
ports:
66
- "8889:8080"

.templates/duckdns/service.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ duckdns:
77
PUID: 1000
88
PGID: 1000
99
# Required variables, define here on in docker-compose.override.yml
10-
#TOKEN: token from duckdns.org
11-
#SUBDOMAINS: your domain added to duckdns.org (without .duckdns.org)
10+
# TOKEN: token from duckdns.org
11+
# SUBDOMAINS: your domain added to duckdns.org (without .duckdns.org)
1212
# Optional
13-
#PRIVATE_SUBDOMAINS: your domain added to duckdns.org (without .duckdns.org)
13+
# PRIVATE_SUBDOMAINS: your domain added to duckdns.org (without .duckdns.org)
1414

.templates/kapacitor/service.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ kapacitor:
33
image: kapacitor:1.5
44
restart: unless-stopped
55
environment:
6-
- TZ=Etc/UTC
7-
# see https://docs.influxdata.com/kapacitor/v1.6/administration/configuration/#kapacitor-environment-variables
6+
- TZ=${TZ:-Etc/UTC}
7+
# see https://docs.influxdata.com/kapacitor/v1.6/administration/configuration/#kapacitor-environment-variables
88
- KAPACITOR_INFLUXDB_0_URLS_0=http://influxdb:8086
9-
# - KAPACITOR_INFLUXDB_USERNAME=
10-
# - KAPACITOR_INFLUXDB_PASSWORD=
11-
# - KAPACITOR_HOSTNAME=kapacitor
12-
# - KAPACITOR_LOGGING_LEVEL=INFO
13-
# - KAPACITOR_REPORTING_ENABLED=false
9+
# - KAPACITOR_INFLUXDB_USERNAME=
10+
# - KAPACITOR_INFLUXDB_PASSWORD=
11+
# - KAPACITOR_HOSTNAME=kapacitor
12+
# - KAPACITOR_LOGGING_LEVEL=INFO
13+
# - KAPACITOR_REPORTING_ENABLED=false
1414
ports:
1515
- "9092:9092"
1616
volumes:

.templates/mosquitto/service.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ mosquitto:
33
build:
44
context: ./.templates/mosquitto/.
55
args:
6-
- MOSQUITTO_BASE=eclipse-mosquitto:latest
6+
- MOSQUITTO_BASE=eclipse-mosquitto:latest
77
restart: unless-stopped
88
environment:
9-
- TZ=Etc/UTC
9+
- TZ=${TZ:-Etc/UTC}
1010
ports:
1111
- "1883:1883"
1212
volumes:

.templates/n8n/service.yml

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,28 @@
11
n8n:
2-
container_name: "n8n"
3-
restart: unless-stopped
4-
ports:
5-
- "5678:5678"
6-
image: n8nio/n8n
7-
stdin_open: true
8-
volumes:
9-
- ./volumes/n8n:/home/node/.n8n
10-
# Optional DB and Timezone configs.
11-
# environment:
12-
# - DB_TYPE=mysqldb
13-
# - DB_MYSQLDB_DATABASE=<MYSQLDB_DATABASE>
14-
# - DB_MYSQLDB_HOST=<MYSQLDB_HOST>
15-
# - DB_MYSQLDB_PORT=<MYSQLDB_PORT>
16-
# - DB_MYSQLDB_USER=<MYSQLDB_USER>
17-
# - DB_MYSQLDB_PASSWORD=<MYSQLDB_PASSWORD>
18-
# - GENERIC_TIMEZONE="Europe/Berlin"
19-
# - TZ="Europe/Berlin"
20-
# Uncomment to enable authentication
21-
# - N8N_BASIC_AUTH_ACTIVE=true
22-
# - N8N_BASIC_AUTH_USER=<USER>
23-
# - N8N_BASIC_AUTH_PASSWORD=<PASSWORD>
24-
25-
# - PGID=1000
26-
# - PUID=1000
27-
# - USBDEVICES=/dev/ttyAMA0
28-
# - PACKAGES=mc
2+
container_name: "n8n"
3+
restart: unless-stopped
4+
ports:
5+
- "5678:5678"
6+
image: n8nio/n8n
7+
stdin_open: true
8+
volumes:
9+
- ./volumes/n8n:/home/node/.n8n
10+
environment:
11+
- TZ=${TZ:-Etc/UTC}
12+
# - PGID=1000
13+
# - PUID=1000
14+
# - USBDEVICES=/dev/ttyAMA0
15+
# - PACKAGES=mc
16+
# Optional DB and Timezone configs.
17+
# - DB_TYPE=mysqldb
18+
# - DB_MYSQLDB_DATABASE=<MYSQLDB_DATABASE>
19+
# - DB_MYSQLDB_HOST=<MYSQLDB_HOST>
20+
# - DB_MYSQLDB_PORT=<MYSQLDB_PORT>
21+
# - DB_MYSQLDB_USER=<MYSQLDB_USER>
22+
# - DB_MYSQLDB_PASSWORD=<MYSQLDB_PASSWORD>
23+
# - GENERIC_TIMEZONE=${TZ:-Etc/UTC}
24+
# Optional to enable authentication
25+
# - N8N_BASIC_AUTH_ACTIVE=true
26+
# - N8N_BASIC_AUTH_USER=<USER>
27+
# - N8N_BASIC_AUTH_PASSWORD=<PASSWORD>
2928

.templates/openhab/service.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ openhab:
44
restart: unless-stopped
55
network_mode: host
66
volumes:
7-
- "/etc/localtime:/etc/localtime:ro"
8-
- "/etc/timezone:/etc/timezone:ro"
9-
- "./volumes/openhab/addons:/openhab/addons"
10-
- "./volumes/openhab/conf:/openhab/conf"
11-
- "./volumes/openhab/userdata:/openhab/userdata"
7+
- "/etc/localtime:/etc/localtime:ro"
8+
- "/etc/timezone:/etc/timezone:ro"
9+
- "./volumes/openhab/addons:/openhab/addons"
10+
- "./volumes/openhab/conf:/openhab/conf"
11+
- "./volumes/openhab/userdata:/openhab/userdata"
1212
environment:
1313
- OPENHAB_HTTP_PORT=4050
1414
- OPENHAB_HTTPS_PORT=4051
1515
- EXTRA_JAVA_OPTS=-Duser.timezone=Etc/UTC
16-
# logging:
17-
# options:
18-
# max-size: "5m"
19-
# max-file: "3"
16+
x-logging:
17+
options:
18+
max-size: "5m"
19+
max-file: "3"
2020

0 commit comments

Comments
 (0)