@@ -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