From 2a20cce6699c4eb4abca80c18369f264e82479ad Mon Sep 17 00:00:00 2001 From: Rik Veenboer Date: Wed, 4 Feb 2026 18:13:15 +0100 Subject: [PATCH] fix whitespace --- compose.caddy.yaml | 9 ++++++++- compose.droppy.yaml | 3 ++- compose.dsmr.yaml | 12 ++++++------ compose.fluentbit.yaml | 9 ++++++++- compose.homarr.yaml | 6 +++++- compose.loki.yaml | 9 ++++++++- compose.mediamtx.yaml | 1 - compose.mosquitto.yaml | 3 ++- compose.nodered.yaml | 8 ++++---- compose.pgadmin.yaml | 9 ++++++++- compose.photoprism.yaml | 9 ++++++++- compose.surfshark.yaml | 11 ++++++----- 12 files changed, 65 insertions(+), 24 deletions(-) diff --git a/compose.caddy.yaml b/compose.caddy.yaml index 120a8ed..112815e 100644 --- a/compose.caddy.yaml +++ b/compose.caddy.yaml @@ -26,7 +26,14 @@ services: extra_hosts: - "host:${HOST_IP}" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:2019/metrics"] + test: + [ + "CMD", + "wget", + "--no-verbose", + "--spider", + "http://localhost:2019/metrics", + ] interval: 30s timeout: 10s retries: 3 diff --git a/compose.droppy.yaml b/compose.droppy.yaml index 1db61b2..cb11a41 100644 --- a/compose.droppy.yaml +++ b/compose.droppy.yaml @@ -9,7 +9,8 @@ services: - /opt/droppy:/config - /media/scratch/droppy:/files healthcheck: - test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:8989/"] + test: + ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:8989/"] interval: 30s timeout: 10s retries: 3 diff --git a/compose.dsmr.yaml b/compose.dsmr.yaml index 43ba520..34756a3 100644 --- a/compose.dsmr.yaml +++ b/compose.dsmr.yaml @@ -14,12 +14,12 @@ services: volumes: - /opt/dsmr/backups:/home/dsmr/app/backups healthcheck: - # Checks if the dashboard login page loads successfully - test: ["CMD-SHELL", "curl -f http://localhost:80 || exit 1"] - interval: 30s - timeout: 10s - retries: 3 - start_period: 60s + # Checks if the dashboard login page loads successfully + test: ["CMD-SHELL", "curl -f http://localhost:80 || exit 1"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 60s dsmrdb: container_name: dsmrdb diff --git a/compose.fluentbit.yaml b/compose.fluentbit.yaml index 2b10443..e7f5095 100644 --- a/compose.fluentbit.yaml +++ b/compose.fluentbit.yaml @@ -22,7 +22,14 @@ services: extra_hosts: - "host:${HOST_IP}" 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 timeout: 10s retries: 3 diff --git a/compose.homarr.yaml b/compose.homarr.yaml index ecf32d5..a347098 100644 --- a/compose.homarr.yaml +++ b/compose.homarr.yaml @@ -13,7 +13,11 @@ services: - /opt/homarr/icons:/app/public/icons - /var/run/docker.sock:/var/run/docker.sock 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 timeout: 10s retries: 3 diff --git a/compose.loki.yaml b/compose.loki.yaml index 97a9506..9317ea0 100644 --- a/compose.loki.yaml +++ b/compose.loki.yaml @@ -13,7 +13,14 @@ services: extra_hosts: - "host:${HOST_IP}" healthcheck: - test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost:3100/ready"] + test: + [ + "CMD", + "wget", + "--no-verbose", + "--spider", + "http://localhost:3100/ready", + ] interval: 30s timeout: 10s retries: 3 diff --git a/compose.mediamtx.yaml b/compose.mediamtx.yaml index 7178fff..bbc4bd8 100644 --- a/compose.mediamtx.yaml +++ b/compose.mediamtx.yaml @@ -23,5 +23,4 @@ services: interval: 30s timeout: 10s retries: 3 - # vlc --network-caching=50 rtsp://192.168.2.200:8554/mystream diff --git a/compose.mosquitto.yaml b/compose.mosquitto.yaml index 1f73f38..e5b2191 100644 --- a/compose.mosquitto.yaml +++ b/compose.mosquitto.yaml @@ -13,7 +13,8 @@ services: extra_hosts: - "host:${HOST_IP}" 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 timeout: 10s retries: 3 diff --git a/compose.nodered.yaml b/compose.nodered.yaml index 55c86d0..9064eb8 100644 --- a/compose.nodered.yaml +++ b/compose.nodered.yaml @@ -12,7 +12,7 @@ services: - "host:${HOST_IP}" - "mqtt:${HOST_IP}" healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:1880/"] - interval: 30s - timeout: 10s - retries: 3 + test: ["CMD", "curl", "-f", "http://localhost:1880/"] + interval: 30s + timeout: 10s + retries: 3 diff --git a/compose.pgadmin.yaml b/compose.pgadmin.yaml index a27570f..53e2904 100644 --- a/compose.pgadmin.yaml +++ b/compose.pgadmin.yaml @@ -12,7 +12,14 @@ services: - /opt/pgadmin/var:/var/lib/pgadmin - /opt/pgadmin/log:/var/log/pgadmin healthcheck: - test: ["CMD", "wget", "--no-verbose", "--spider", "http://localhost/misc/ping"] + test: + [ + "CMD", + "wget", + "--no-verbose", + "--spider", + "http://localhost/misc/ping", + ] interval: 30s timeout: 10s retries: 3 diff --git a/compose.photoprism.yaml b/compose.photoprism.yaml index 0f0c14c..ee46ffb 100644 --- a/compose.photoprism.yaml +++ b/compose.photoprism.yaml @@ -54,7 +54,14 @@ services: - /mnt/yotta/helium/shared/Photographs/Vakantie/Bram + Rik/Athene 2023:/photoprism/originals/Vakantie/Bram + Rik/Athene 2023 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 timeout: 10s retries: 3 diff --git a/compose.surfshark.yaml b/compose.surfshark.yaml index 21f3e5f..8c44261 100644 --- a/compose.surfshark.yaml +++ b/compose.surfshark.yaml @@ -24,8 +24,9 @@ services: - 6881:6881/udp restart: unless-stopped healthcheck: - test: ["CMD-SHELL", "curl -f -s https://www.google.com > /dev/null || exit 1"] - interval: 60s - timeout: 10s - retries: 3 - start_period: 30s + test: + ["CMD-SHELL", "curl -f -s https://www.google.com > /dev/null || exit 1"] + interval: 60s + timeout: 10s + retries: 3 + start_period: 30s