fix: use 127.0.0.1 instead of localhost in health check

This commit is contained in:
Lizandro Guarnizo
2026-06-25 16:27:40 -05:00
parent 40e378bff8
commit e76d7b5027
+1 -1
View File
@@ -24,7 +24,7 @@ services:
- S3_PUBLIC_URL=${S3_PUBLIC_URL}
- STRIPE_WEBHOOK_SECRET=${STRIPE_WEBHOOK_SECRET}
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:3001/api/health"]
test: ["CMD", "wget", "-qO-", "http://127.0.0.1:3001/api/health"]
interval: 30s
timeout: 5s
retries: 3