-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
41 lines (37 loc) · 929 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
41 lines (37 loc) · 929 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
37
38
39
40
41
services:
falkordb:
image: falkordb/falkordb
ports:
- "6379:6379"
volumes:
- falkordb_data:/data
graph-service:
build: .
command: uv run uvicorn services.graph.main:app --host 0.0.0.0 --port 8001
ports:
- "8001:8001"
environment:
- FALKORDB_HOST=falkordb
- FALKORDB_PORT=6379
depends_on:
- falkordb
execution-service:
build: .
command: uv run uvicorn services.execution.main:app --host 0.0.0.0 --port 8002
ports:
- "8002:8002"
environment:
- GRAPH_SERVICE_URL=http://graph-service:8001
depends_on:
- graph-service
optimization-service:
build: .
command: uv run uvicorn services.optimization.main:app --host 0.0.0.0 --port 8003
ports:
- "8003:8003"
environment:
- EXECUTION_SERVICE_URL=http://execution-service:8002
depends_on:
- execution-service
volumes:
falkordb_data: