Fix healthcheck to use 127.0.0.1 instead of localhost

Alpine Linux doesn't resolve localhost properly in some cases

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2025-12-26 23:48:12 -05:00
parent 53c793342a
commit df7149db34
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ services:
networks:
- traefik-public
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3000"]
test: ["CMD", "wget", "-q", "--spider", "http://127.0.0.1:3000"]
interval: 30s
timeout: 10s
retries: 3