Aigenthix/Graph_RAG7
0
1version: '3.8'2 3services:4 graph-rag:5 build: .6 container_name: graph-rag-chatbot7 ports:8 - "7860:7860"9 environment:10 - GROQ_API_KEY=${GROQ_API_KEY}11 - PORT=786012 - FLASK_ENV=production13 volumes:14 - ./data:/app/data15 restart: unless-stopped16 healthcheck:17 test: ["CMD", "curl", "-f", "http://localhost:7860/"]18 interval: 30s19 timeout: 10s20 retries: 321 start_period: 40s22 