mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-16 22:39:41 +02:00
fix(staging): correct chat-backend health check path to /api/v1/health
The chat-backend NestJS health endpoint is at /api/v1/health, not /api/health. This was causing the container to be marked as unhealthy, preventing chat-web from starting due to its depends_on condition. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
0aa9ba0c7e
commit
4a56c888b0
1 changed files with 1 additions and 1 deletions
|
|
@ -112,7 +112,7 @@ services:
|
|||
ports:
|
||||
- "3002:3002"
|
||||
healthcheck:
|
||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3002/api/health"]
|
||||
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3002/api/v1/health"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue