-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (29 loc) · 861 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (29 loc) · 861 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
services:
mcp-server:
build:
context: ./backend
dockerfile: Dockerfile
ports:
- "8000:8000"
environment:
- OPENAI_API_KEY=${OPENAI_API_KEY}
- HOST=0.0.0.0
- PORT=8000
volumes:
- ./backend/eu_ai_act_index:/app/eu_ai_act_index
rag-eu-agent:
build:
context: ./frontend
dockerfile: Dockerfile
ports:
- "7860:7860"
environment:
- OPENAI_API_KEY=${OPENAI_API_KEY}
- LANGCHAIN_TRACING_V2=${LANGCHAIN_TRACING_V2:-true}
- LANGCHAIN_ENDPOINT=${LANGCHAIN_ENDPOINT:-https://eu.api.smith.langchain.com}
- LANGCHAIN_API_KEY=${LANGCHAIN_API_KEY}
- LANGSMITH_PROJECT=${LANGSMITH_PROJECT}
- MCP_SERVER_URL=http://mcp-server:8000/mcp
- SUPERMEMORY_API_KEY=${SUPERMEMORY_API_KEY}
depends_on:
- mcp-server