-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (37 loc) · 949 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (37 loc) · 949 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
42
version: "3.9"
services:
gateway:
build: .
command: uvicorn services.gateway_service:app --host 0.0.0.0 --port 8080
ports: ["8080:8080"]
env_file: [.env]
networks:
- sovereign-isolated
ingest:
build: .
command: uvicorn services.ingest_service:app --host 0.0.0.0 --port 8081
ports: ["8081:8081"]
volumes: ["./data:/app/data"]
env_file: [.env]
networks:
- sovereign-isolated
memory:
build: .
command: uvicorn services.memory_service:app --host 0.0.0.0 --port 8082
ports: ["8082:8082"]
volumes: ["./data:/app/data"]
env_file: [.env]
networks:
- sovereign-isolated
compute:
build: .
command: uvicorn services.compute_service:app --host 0.0.0.0 --port 8083
ports: ["8083:8083"]
env_file: [.env]
networks:
- sovereign-isolated
networks:
sovereign-isolated:
driver: bridge
internal: true
name: sovereign-isolated-net