From e00e959543569aa244cd0a2a743eefe737a909a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 23 Nov 2025 02:11:19 +0100 Subject: [PATCH] Update backend IPs for ComfyUI and Supervisor proxies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove hardcoded default values from compose.yaml - Backend IPs now managed via environment variables only 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- ai/compose.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ai/compose.yaml b/ai/compose.yaml index 94800ae..2827580 100644 --- a/ai/compose.yaml +++ b/ai/compose.yaml @@ -206,7 +206,7 @@ services: restart: unless-stopped environment: TZ: ${TIMEZONE:-Europe/Berlin} - COMFYUI_BACKEND_HOST: ${COMFYUI_BACKEND_HOST:-100.121.199.88} + COMFYUI_BACKEND_HOST: ${COMFYUI_BACKEND_HOST} COMFYUI_BACKEND_PORT: ${COMFYUI_BACKEND_PORT:-8188} volumes: - ./comfyui-nginx.conf:/etc/nginx/nginx.conf.template:ro @@ -239,7 +239,7 @@ services: restart: unless-stopped environment: TZ: ${TIMEZONE:-Europe/Berlin} - SUPERVISOR_BACKEND_HOST: ${SUPERVISOR_BACKEND_HOST:-100.121.199.88} + SUPERVISOR_BACKEND_HOST: ${SUPERVISOR_BACKEND_HOST} SUPERVISOR_BACKEND_PORT: ${SUPERVISOR_BACKEND_PORT:-9001} volumes: - ./supervisor-nginx.conf:/etc/nginx/nginx.conf.template:ro