Skip to content

Commit bc780f0

Browse files
committed
☠️ Hoisted the colors: patched Prowlarr and qBittorrent healthchecks to match true titles
1 parent 33262d8 commit bc780f0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docker-compose.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -210,11 +210,11 @@ services:
210210

211211
# Define container healthcheck to verify Prowlarr connectivity
212212
healthcheck:
213-
test: ["CMD-SHELL", "wget -qO- http://localhost:9696 | grep -q '<title>Prowlarr</title>'"] # Check if Prowlarr web UI is up
214-
interval: ${PROWLARR_HEALTHCHECK_INTERVAL} # Run the check at this interval
215-
timeout: ${PROWLARR_HEALTHCHECK_TIMEOUT} # Fail if it exceeds this duration
216-
start_period: ${PROWLARR_HEALTHCHECK_START_PERIOD} # Grace period before checks start
217-
retries: 5 # Mark as unhealthy after 5 failures
213+
test: ["CMD-SHELL", "wget -qO- http://localhost:9696 | grep -q '<title>Login - Prowlarr</title>'"] # Check if Prowlarr web UI is up
214+
interval: ${PROWLARR_HEALTHCHECK_INTERVAL} # Run the check at this interval
215+
timeout: ${PROWLARR_HEALTHCHECK_TIMEOUT} # Fail if it exceeds this duration
216+
start_period: ${PROWLARR_HEALTHCHECK_START_PERIOD} # Grace period before checks start
217+
retries: 5 # Mark as unhealthy after 5 failures
218218

219219
# Specify container service dependencies
220220
depends_on:
@@ -240,11 +240,11 @@ services:
240240

241241
# Define container healthcheck to verify qBittorrent connectivity
242242
healthcheck:
243-
test: ["CMD-SHELL", "wget -qO- http://localhost:8080 | grep -q '<title>qBittorrent</title>'"] # Check if qBittorrent web UI is reachable
244-
interval: ${QBITTORRENT_HEALTHCHECK_INTERVAL} # Run the check at this interval
245-
timeout: ${QBITTORRENT_HEALTHCHECK_TIMEOUT} # Fail if it exceeds this duration
246-
start_period: ${QBITTORRENT_HEALTHCHECK_START_PERIOD} # Grace period before checks start
247-
retries: 5 # Mark as unhealthy after 5 failures
243+
test: ["CMD-SHELL", "wget -qO- http://localhost:8080 | grep -q '<title>qBittorrent WebUI</title>'"] # Check if qBittorrent web UI is reachable
244+
interval: ${QBITTORRENT_HEALTHCHECK_INTERVAL} # Run the check at this interval
245+
timeout: ${QBITTORRENT_HEALTHCHECK_TIMEOUT} # Fail if it exceeds this duration
246+
start_period: ${QBITTORRENT_HEALTHCHECK_START_PERIOD} # Grace period before checks start
247+
retries: 5 # Mark as unhealthy after 5 failures
248248

249249
# Specify container service dependencies
250250
depends_on:

0 commit comments

Comments
 (0)