From 91e66d8d4f126e2c88e58d5938c57fe342493b0c Mon Sep 17 00:00:00 2001 From: Peter Meier Date: Wed, 8 Jul 2026 23:25:36 +0200 Subject: [PATCH] fix(docker): healthcheck 127.0.0.1 statt localhost (IPv6 ::1 refused) Co-Authored-By: Claude Opus 4.8 (1M context) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 418446c..7d936f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,6 +36,6 @@ EXPOSE 3001 ENV PORT=3001 HEALTHCHECK --interval=5s --timeout=3s --start-period=15s --retries=3 \ - CMD wget -qO- http://localhost:3001/ > /dev/null || exit 1 + CMD wget -qO- http://127.0.0.1:3001/ > /dev/null || exit 1 CMD ["node", "build"]