From 886d941a6520b051ca97772f539cf8a73017fa3c Mon Sep 17 00:00:00 2001 From: Lukas Parsons Date: Mon, 6 Jul 2026 22:29:11 -0400 Subject: [PATCH] Point SEARXNG_INSTANCE to standalone searxng at host.docker.internal:8888 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bundled searxng was removed — the old http://searxng:8080 DNS name resolves to nothing. Standalone searxng runs on Helm at port 8888, reachable from container via host.docker.internal. --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 70aed001..8e5a3de2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -29,7 +29,7 @@ services: - RESEARCH_LLM_ENDPOINT=${RESEARCH_LLM_ENDPOINT:-} - HF_TOKEN=${HF_TOKEN:-} - HUGGING_FACE_HUB_TOKEN=${HUGGING_FACE_HUB_TOKEN:-} - - SEARXNG_INSTANCE=http://searxng:8080 + - SEARXNG_INSTANCE=http://host.docker.internal:8888 - CHROMADB_HOST=chromadb - CHROMADB_PORT=8000 - DATABASE_URL=${DATABASE_URL:-sqlite:///./data/app.db}