mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 21:41:09 +02:00
fix(search): correct health check URL to /api/v1/health
The NestJS app uses a global /api/v1 prefix, but the health check was hitting /health causing 5600+ consecutive failures and unhealthy status. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
a17a3a7f58
commit
ec8847cee3
1 changed files with 1 additions and 1 deletions
|
|
@ -251,7 +251,7 @@ services:
|
|||
ports:
|
||||
- "3020:3020"
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3020/health"]
|
||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://127.0.0.1:3020/api/v1/health"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue