-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Expand file tree
/
Copy pathdocker.env
More file actions
26 lines (20 loc) · 895 Bytes
/
Copy pathdocker.env
File metadata and controls
26 lines (20 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Docker environment configuration (passed via: docker compose --env-file docker.env ...)
# Ollama running on the host. The compose files add
# extra_hosts: ["host.docker.internal:host-gateway"] so this also resolves on Linux.
OLLAMA_HOST=http://host.docker.internal:11434
# Alternative: containerized Ollama (start with: ./start-docker.sh container)
# OLLAMA_HOST=http://ollama:11434
# Service wiring
NODE_ENV=production
RAG_API_URL=http://rag-api:8001
# Browser-facing URLs. These are inlined into the frontend at build time.
NEXT_PUBLIC_API_URL=http://localhost:8000
NEXT_PUBLIC_RAG_API_URL=http://localhost:8001
# Shared SQLite database, mounted into both backend and rag-api
DB_PATH=/app/backend/chat_data.db
LANCEDB_PATH=/app/lancedb
# Models
GENERATION_MODEL=qwen3.5:9b
ENRICHMENT_MODEL=qwen3.5:4b
EMBEDDING_MODEL=microsoft/harrier-oss-v1-0.6b
RERANKER_MODEL=Qwen/Qwen3-Reranker-4B