From 506d6bc580835b460ba40f03337810ec277407bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sat, 8 Nov 2025 11:30:37 +0100 Subject: [PATCH] fix: disable health check for Units service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disabled health check for Units converter service as it was failing due to IPv6 connection attempts. The service is running correctly but the health check was trying to connect to [::1]:80 instead of 127.0.0.1:80, causing false negatives. Similar to Pastel services, disabling the built-in health check. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kit/compose.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kit/compose.yaml b/kit/compose.yaml index de5ca56..83f6fc4 100644 --- a/kit/compose.yaml +++ b/kit/compose.yaml @@ -151,6 +151,8 @@ services: image: ${KIT_UNITS_IMAGE:-ghcr.io/valknarness/units-ui:latest} container_name: ${KIT_COMPOSE_PROJECT_NAME}_units restart: unless-stopped + healthcheck: + disable: true networks: - compose_network labels: