Update backend IPs for ComfyUI and Supervisor proxies

- 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 <noreply@anthropic.com>
This commit is contained in:
2025-11-23 02:11:19 +01:00
parent 0fd2eacad1
commit e00e959543

View File

@@ -206,7 +206,7 @@ services:
restart: unless-stopped restart: unless-stopped
environment: environment:
TZ: ${TIMEZONE:-Europe/Berlin} 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} COMFYUI_BACKEND_PORT: ${COMFYUI_BACKEND_PORT:-8188}
volumes: volumes:
- ./comfyui-nginx.conf:/etc/nginx/nginx.conf.template:ro - ./comfyui-nginx.conf:/etc/nginx/nginx.conf.template:ro
@@ -239,7 +239,7 @@ services:
restart: unless-stopped restart: unless-stopped
environment: environment:
TZ: ${TIMEZONE:-Europe/Berlin} 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} SUPERVISOR_BACKEND_PORT: ${SUPERVISOR_BACKEND_PORT:-9001}
volumes: volumes:
- ./supervisor-nginx.conf:/etc/nginx/nginx.conf.template:ro - ./supervisor-nginx.conf:/etc/nginx/nginx.conf.template:ro