-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (45 loc) · 942 Bytes
/
docker-compose.yml
File metadata and controls
46 lines (45 loc) · 942 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
43
44
45
46
services:
event-logger:
image: public.ecr.aws/s2e1n3u8/event-logger:latest
env_file:
- environment/.env.event-logger
networks:
- mcp-network
environment:
- PORT=8181
ai-memory:
image: public.ecr.aws/s2e1n3u8/ai-memory:latest
env_file:
- environment/.env.ai-memory
depends_on:
- event-logger
networks:
- mcp-network
environment:
- PORT=8182
semantic-cache:
image: public.ecr.aws/s2e1n3u8/semantic-cache:latest
env_file:
- environment/.env.semantic-cache
depends_on:
- event-logger
networks:
- mcp-network
environment:
- PORT=8183
memory-mcp:
build: .
env_file:
- environment/.env.memory-mcp
depends_on:
- event-logger
- ai-memory
- semantic-cache
networks:
- mcp-network
ports:
- 8080:8080
networks:
mcp-network:
driver: bridge
name: mcp-network