From 758fa37c2a9df101c7683989485925e58352adc4 Mon Sep 17 00:00:00 2001 From: Ryan Lancaster Date: Wed, 18 Mar 2026 17:03:43 -0400 Subject: [PATCH] fix: frontend healthcheck use 127.0.0.1 (Alpine busybox IPv6 bug) --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 28f1cae..be5c4c2 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -21,4 +21,4 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf EXPOSE 80 HEALTHCHECK --interval=30s --timeout=5s --start-period=5s --retries=3 \ - CMD wget -qO- http://localhost/health || exit 1 + CMD wget -qO- http://127.0.0.1/health || exit 1