Nathan 063642d953 Removes unused external network from configuration
Simplifies service setup by eliminating reference to an external network
that was not in active use. Reduces configuration complexity and potential
for misconfiguration.
2026-04-21 13:02:52 -04:00

22 lines
838 B
YAML

services:
open-webui:
image: ghcr.io/open-webui/open-webui:v0.9.1
container_name: open-webui
restart: always
environment:
# If Ollama is on the same host (Waldorf)
- OLLAMA_BASE_URL=http://10.0.0.202:11434
# Standard settings
- WEBUI_SECRET_KEY=${WEBUI_SECRET_KEY}
- TZ=America/New_York
volumes:
- /mnt/appdata/openwebui:/app/backend/data
# If you need to talk to your new MCP Gateway
# extra_hosts:
# - "mcp-gateway:10.0.0.x" # IP of Heimdall
labels:
- "traefik.enable=true"
- "traefik.http.routers.openwebui.rule=Host(`gpt.castaldifamily.com`)"
- "traefik.http.routers.openwebui.entrypoints=websecure"
- "traefik.http.routers.openwebui.tls.certresolver=cloudflare"
- "traefik.http.services.openwebui.loadbalancer.server.port=8080"