-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (33 loc) · 793 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
36 lines (33 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
services:
qdrant:
image: qdrant/qdrant
container_name: qdrant
ports:
- "6333:6333"
volumes:
- qdrant_storage:/qdrant/storage
backend:
build: ./backend
container_name: data_droid_backend
environment:
- QDRANT_URL=http://qdrant:6333
- OPENAI_API_KEY=${OPENAI_API_KEY}
- GEMINI_API_KEY=${GEMINI_API_KEY}
- LLM_PROVIDER=${LLM_PROVIDER:-openai}
- PROMPT_PROFILE_DIR=bridge_eng
ports:
- "8003:8003"
depends_on:
- qdrant
frontend:
build: ./frontend
container_name: data_droid_frontend
ports:
- "8501:8501"
depends_on:
- backend
environment:
- BACKEND_URL=http://backend:8003
- FRONTEND_CONFIG=/app/example_configs/bridge_eng.json
volumes:
qdrant_storage: