feat: refactor Health-Check-Probes und Connectivity-Logik, stabilisiere Docker-Services

Signed-off-by: StefanMoCoAt <stefan.mo.co@gmail.com>
This commit is contained in:
2026-04-16 18:47:13 +02:00
parent edd33c34dc
commit 8f45544fe1
5 changed files with 44 additions and 5 deletions
+4 -4
View File
@@ -81,7 +81,7 @@ services:
# condition: "service_healthy"
healthcheck:
test: [ "CMD", "wget", "--spider", "-q", "http://localhost:8081/actuator/health/readiness" ]
test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8081/actuator/health/readiness" ]
interval: 15s
timeout: 5s
retries: 5
@@ -156,7 +156,7 @@ services:
condition: "service_healthy"
healthcheck:
test: [ "CMD", "wget", "--spider", "-q", "http://localhost:8082/actuator/health/readiness" ]
test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8082/actuator/health/readiness" ]
interval: 15s
timeout: 5s
retries: 5
@@ -231,7 +231,7 @@ services:
condition: "service_healthy"
healthcheck:
test: [ "CMD", "wget", "--spider", "-q", "http://localhost:8086/actuator/health/readiness" ]
test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8086/actuator/health/readiness" ]
interval: 15s
timeout: 5s
retries: 5
@@ -306,7 +306,7 @@ services:
condition: "service_healthy"
healthcheck:
test: [ "CMD", "wget", "--spider", "-q", "http://localhost:8085/actuator/health/readiness" ]
test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8085/actuator/health/readiness" ]
interval: 15s
timeout: 5s
retries: 5