feat: Add docker-compose for RAG service and deployment script

This commit is contained in:
Rushabh Gosar
2026-01-07 18:10:06 -08:00
parent 8d272f1c08
commit 21ee6be98f
2 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
version: '3.8'
services:
rag-service:
image: rag-service:latest
container_name: rag-service
build:
context: .
dockerfile: Dockerfile
ports:
- "8000:8000"
volumes:
- /mnt/storage.rushg.me/data/z5/rushg.me:/data/rag_source:ro
- ./db:/data/db
environment:
- OLLAMA_BASE_URL=http://192.168.1.2:30068