From 9bf825d668545626e6c4339c64b3dc8c57756612 Mon Sep 17 00:00:00 2001 From: Ray Andrew Date: Fri, 13 Feb 2026 01:31:45 -0600 Subject: [PATCH] fix: bind to 0.0.0.0 for tailscale access, use hetzner firewall --- docker-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 67f15d9..68e8b62 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -20,7 +20,7 @@ services: environment: - SEARXNG_SECRET_KEY=${SEARXNG_SECRET_KEY} ports: - - "127.0.0.1:8080:8080" + - "0.0.0.0:8080:8080" depends_on: valkey: condition: service_healthy @@ -32,7 +32,7 @@ services: volumes: - chromadb-data:/chroma/chroma ports: - - "127.0.0.1:8000:8000" + - "0.0.0.0:8000:8000" environment: - IS_PERSISTENT=TRUE - ANONYMIZED_TELEMETRY=FALSE @@ -45,7 +45,7 @@ services: volumes: - ./litellm/config.yaml:/app/config.yaml:ro ports: - - "127.0.0.1:4000:4000" + - "0.0.0.0:4000:4000" environment: - LITELLM_MASTER_KEY=${LITELLM_MASTER_KEY} - OPENROUTER_API_KEY=${OPENROUTER_API_KEY} @@ -67,7 +67,7 @@ services: volumes: - open-webui-data:/app/backend/data ports: - - "127.0.0.1:3000:8080" + - "0.0.0.0:3000:8080" environment: - OLLAMA_BASE_URL= - OPENAI_API_BASE_URL=http://litellm:4000/v1