From fed4f2301571153af6eb3811b5835cb7af89b798 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 7 Nov 2025 15:43:41 +0100 Subject: [PATCH] fix: update Pastel UI environment variables format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed environment variable format from array to object syntax for better Docker Compose compatibility: - NEXT_PUBLIC_API_URL: https://pastel.kit.pivoine.art - NEXT_PUBLIC_APP_URL: https://pastel.kit.pivoine.art 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kit/compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kit/compose.yaml b/kit/compose.yaml index ac50e23..09b8bff 100644 --- a/kit/compose.yaml +++ b/kit/compose.yaml @@ -115,8 +115,8 @@ services: healthcheck: disable: true environment: - - NEXT_PUBLIC_API_URL=https://${KIT_PASTEL_TRAEFIK_HOST} - - NEXT_PUBLIC_APP_URL=https://${KIT_PASTEL_TRAEFIK_HOST} + NEXT_PUBLIC_API_URL: https://${KIT_PASTEL_TRAEFIK_HOST} + NEXT_PUBLIC_APP_URL: https://${KIT_PASTEL_TRAEFIK_HOST} networks: - compose_network labels: