From 45b73e148b5e35fec576e8f24ee6125be37c82c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Mon, 17 Nov 2025 15:27:30 +0100 Subject: [PATCH] fix: update healthcheck to use 127.0.0.1 instead of localhost Updated Docker healthcheck to use 127.0.0.1 for better compatibility. Deployment target: https://audio.kit.pivoine.art --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 685fe12..a0bffd0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,7 +35,7 @@ EXPOSE 80 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD wget --quiet --tries=1 --spider http://localhost/ || exit 1 + CMD wget --quiet --tries=1 --spider http://127.0.0.1/ || exit 1 # Start nginx CMD ["nginx", "-g", "daemon off;"]