fix whitespace

This commit is contained in:
2026-02-04 18:13:15 +01:00
parent ab2f707706
commit 2a20cce669
12 changed files with 65 additions and 24 deletions

View File

@@ -26,7 +26,14 @@ services:
extra_hosts: extra_hosts:
- "host:${HOST_IP}" - "host:${HOST_IP}"
healthcheck: healthcheck:
test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:2019/metrics"] test:
[
"CMD",
"wget",
"--no-verbose",
"--spider",
"http://localhost:2019/metrics",
]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3

View File

@@ -9,7 +9,8 @@ services:
- /opt/droppy:/config - /opt/droppy:/config
- /media/scratch/droppy:/files - /media/scratch/droppy:/files
healthcheck: healthcheck:
test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:8989/"] test:
["CMD", "wget", "--no-verbose", "--spider", "http://localhost:8989/"]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3

View File

@@ -22,7 +22,14 @@ services:
extra_hosts: extra_hosts:
- "host:${HOST_IP}" - "host:${HOST_IP}"
healthcheck: healthcheck:
test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:2020/api/v1/health"] test:
[
"CMD",
"wget",
"--no-verbose",
"--spider",
"http://localhost:2020/api/v1/health",
]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3

View File

@@ -13,7 +13,11 @@ services:
- /opt/homarr/icons:/app/public/icons - /opt/homarr/icons:/app/public/icons
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
healthcheck: healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --spider http://localhost:7575 || exit 1"] test:
[
"CMD-SHELL",
"wget --no-verbose --spider http://localhost:7575 || exit 1",
]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3

View File

@@ -13,7 +13,14 @@ services:
extra_hosts: extra_hosts:
- "host:${HOST_IP}" - "host:${HOST_IP}"
healthcheck: healthcheck:
test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:3100/ready"] test:
[
"CMD",
"wget",
"--no-verbose",
"--spider",
"http://localhost:3100/ready",
]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3

View File

@@ -23,5 +23,4 @@ services:
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3
# vlc --network-caching=50 rtsp://192.168.2.200:8554/mystream # vlc --network-caching=50 rtsp://192.168.2.200:8554/mystream

View File

@@ -13,7 +13,8 @@ services:
extra_hosts: extra_hosts:
- "host:${HOST_IP}" - "host:${HOST_IP}"
healthcheck: healthcheck:
test: ["CMD-SHELL", "mosquitto_sub -t '$SYS/#' -C 1 -i healthcheck || exit 1"] test:
["CMD-SHELL", "mosquitto_sub -t '$SYS/#' -C 1 -i healthcheck || exit 1"]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3

View File

@@ -12,7 +12,14 @@ services:
- /opt/pgadmin/var:/var/lib/pgadmin - /opt/pgadmin/var:/var/lib/pgadmin
- /opt/pgadmin/log:/var/log/pgadmin - /opt/pgadmin/log:/var/log/pgadmin
healthcheck: healthcheck:
test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost/misc/ping"] test:
[
"CMD",
"wget",
"--no-verbose",
"--spider",
"http://localhost/misc/ping",
]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3

View File

@@ -54,7 +54,14 @@ services:
- /mnt/yotta/helium/shared/Photographs/Vakantie/Bram + Rik/Athene 2023:/photoprism/originals/Vakantie/Bram - /mnt/yotta/helium/shared/Photographs/Vakantie/Bram + Rik/Athene 2023:/photoprism/originals/Vakantie/Bram
+ Rik/Athene 2023 + Rik/Athene 2023
healthcheck: healthcheck:
test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:2342/api/v1/status"] test:
[
"CMD",
"wget",
"--no-verbose",
"--spider",
"http://localhost:2342/api/v1/status",
]
interval: 30s interval: 30s
timeout: 10s timeout: 10s
retries: 3 retries: 3

View File

@@ -24,7 +24,8 @@ services:
- 6881:6881/udp - 6881:6881/udp
restart: unless-stopped restart: unless-stopped
healthcheck: healthcheck:
test: ["CMD-SHELL", "curl -f -s https://www.google.com > /dev/null || exit 1"] test:
["CMD-SHELL", "curl -f -s https://www.google.com > /dev/null || exit 1"]
interval: 60s interval: 60s
timeout: 10s timeout: 10s
retries: 3 retries: 3