Before starting the application, add your OPENAI_API_KEY to the rag-be service in docker-compose.yml:
environment:
- OLLAMA_URL=http://ollama:11434
- QDRANT_URL=http://qdrant:6333
- OPENAI_API_KEY=your_openai_api_key_hereReplace your_openai_api_key_here with your actual OpenAI API key.
After setting the API key, start the application using the following command:
docker-compose up -dThis will start all services in detached mode.