Spaces:
Sleeping
Sleeping
File size: 403 Bytes
785b6bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | version: '3.8'
services:
rag-app:
build: .
ports:
- "7860:7860"
volumes:
# Persist vector database
- ./data/chroma_db:/app/data/chroma_db
# Persist rate limiting state
- ./data/rate_limit.json:/app/data/rate_limit.json
env_file:
- .env
environment:
- GRADIO_SERVER_NAME=0.0.0.0
- GRADIO_SERVER_PORT=7860
restart: unless-stopped
|