626 B
626 B
haiku.rag Docker Image
Dockerfile for building haiku.rag with all extras (voyageai, mxbai, a2a).
Building
docker build -f docker/Dockerfile -t haiku-rag .
Running
docker run -p 8000:8000 -p 8001:8001 \
-v $(pwd)/data:/data \
-e EMBEDDINGS_PROVIDER=ollama \
-e EMBEDDINGS_MODEL=nomic-embed-text \
-e QA_PROVIDER=ollama \
-e QA_MODEL=qwen3\
haiku-rag
Note: The environment variables above override the defaults. See Configuration docs for all options.
Docker Compose
See examples/docker/ for a complete setup example.