refactor: move healthcheck to /health and exclude from i18n

This commit is contained in:
2026-01-13 15:27:05 +01:00
parent bf2d939efe
commit b28fadb684
4 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ services:
- ./public/uploads:/app/public/uploads
restart: always
healthcheck:
test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/api/health" ]
test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3000/health" ]
interval: 30s
timeout: 10s
retries: 3