From 66dc42a4073609857c89bc3ec57152228240b5eb Mon Sep 17 00:00:00 2001 From: pyr0ball Date: Thu, 2 Apr 2026 16:57:06 -0700 Subject: [PATCH] fix(preflight): remove vllm from Docker adoption list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit vllm is now managed by cf-orch as a host process — no Docker service defined in compose.yml. Preflight was detecting port 8000 (llm_server) and generating a vllm stub in compose.override.yml with no image, causing `docker compose up` to error on startup. --- scripts/preflight.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/preflight.py b/scripts/preflight.py index b840dda..6e7866b 100644 --- a/scripts/preflight.py +++ b/scripts/preflight.py @@ -47,7 +47,7 @@ OVERRIDE_YML = ROOT / "compose.override.yml" _SERVICES: dict[str, tuple[str, int, str, bool, bool]] = { "streamlit": ("streamlit_port", 8501, "STREAMLIT_PORT", True, False), "searxng": ("searxng_port", 8888, "SEARXNG_PORT", True, True), - "vllm": ("vllm_port", 8000, "VLLM_PORT", True, True), + # vllm removed — now managed by cf-orch (host process), not a Docker service "vision": ("vision_port", 8002, "VISION_PORT", True, True), "ollama": ("ollama_port", 11434, "OLLAMA_PORT", True, True), "ollama_research": ("ollama_research_port", 11435, "OLLAMA_RESEARCH_PORT", True, True), @@ -65,7 +65,6 @@ _LLM_BACKENDS: dict[str, list[tuple[str, str]]] = { _DOCKER_INTERNAL: dict[str, tuple[str, int]] = { "ollama": ("ollama", 11434), "ollama_research": ("ollama_research", 11434), # container-internal port is always 11434 - "vllm": ("vllm", 8000), "vision": ("vision", 8002), "searxng": ("searxng", 8080), # searxng internal port differs from host port }