Fix Dawarich healthcheck behind HTTPS

This commit is contained in:
2026-06-21 22:39:15 +02:00
parent 725e3b0125
commit 201b201657
+1 -1
View File
@@ -115,7 +115,7 @@ services:
expose:
- "3000"
healthcheck:
test: ["CMD-SHELL", "wget -qO - http://127.0.0.1:3000/api/v1/health | grep -q '\"status\"[[:space:]]*:[[:space:]]*\"ok\"'"]
test: ["CMD-SHELL", "wget -qO - --header=\"Host: ${DAWARICH_HOST}\" --header=\"X-Forwarded-Proto: https\" http://127.0.0.1:3000/api/v1/health | grep -q '\"status\"[[:space:]]*:[[:space:]]*\"ok\"'"]
interval: 10s
timeout: 10s
retries: 30