🩹 fix(auth): correct healthcheck endpoint path

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Till-JS 2026-02-13 23:48:45 +01:00
parent 9d7768495d
commit 0485ce4b07

View file

@ -69,7 +69,7 @@ EXPOSE 3001
# Health check - uses /health/ready to verify database connectivity
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:3001/health/ready || exit 1
CMD wget --no-verbose --tries=1 --spider http://localhost:3001/health || exit 1
# Start the application
ENTRYPOINT ["docker-entrypoint.sh"]