Agentic-Support-Copilot / docker-compose.yml
Vineetiitg
feat: implement Redis session memory and multi-turn conversational RAG with coreference resolution
a30ab12
Raw
History Blame Contribute Delete
1.59 kB
services:
qdrant:
image: qdrant/qdrant:latest
ports:
- "6333:6333"
volumes:
- qdrant_storage:/qdrant/storage
restart: always
backend:
build:
context: .
dockerfile: Dockerfile.backend
ports:
- "8000:8000"
volumes:
- ./app:/app/app
- ./tests:/app/tests
- ./datasets:/app/datasets
- ./data:/app/data
- ./reports:/app/reports
env_file:
- .env
environment:
- QDRANT_URL=http://qdrant:6333
- REDIS_URL=redis://redis:6379/0
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY}
depends_on:
- qdrant
- redis
restart: always
redis:
image: redis:7-alpine
ports:
- "6379:6379"
volumes:
- redis_storage:/data
restart: always
worker:
build:
context: .
dockerfile: Dockerfile.backend
command: arq app.worker.WorkerSettings
volumes:
- ./app:/app/app
- ./tests:/app/tests
- ./datasets:/app/datasets
- ./data:/app/data
- ./reports:/app/reports
env_file:
- .env
environment:
- QDRANT_URL=http://qdrant:6333
- REDIS_URL=redis://redis:6379/0
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY}
depends_on:
- qdrant
- redis
restart: always
frontend:
build:
context: .
dockerfile: Dockerfile.frontend
ports:
- "8501:8501"
volumes:
- ./ui:/app/ui
environment:
- BACKEND_BASE_URL=http://backend:8000
depends_on:
- backend
restart: always
volumes:
qdrant_storage:
redis_storage: