-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (43 loc) · 1017 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
47 lines (43 loc) · 1017 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
47
services:
nats:
image: nats:alpine
ports:
- "4222:4222"
command: ["-js"] # Enable JetStream
ollama:
image: ollama/ollama
ports:
- "11434:11434"
volumes:
- ollama_data:/root/.ollama
# Note: the user will need to run `docker exec -it ollama ollama pull qwen3.6:35b-a3b-q4_K_M` once to pull the model
mcp-gateway:
build:
context: .
dockerfile: Dockerfile
ports:
- "8421:8421"
environment:
- MARVIN_TRANSPORT=sse
- MARVIN_HOST=0.0.0.0
- MARVIN_PORT=8421
- NATS_URL=nats://nats:4222
volumes:
- ./marvin_vault:/app/marvin_vault
depends_on:
- nats
brain-worker:
build:
context: .
dockerfile: Dockerfile
command: ["uv", "run", "python", "-m", "marvin.worker"]
environment:
- NATS_URL=nats://nats:4222
- OLLAMA_HOST=http://ollama:11434
volumes:
- ./marvin_vault:/app/marvin_vault
depends_on:
- nats
- ollama
volumes:
ollama_data: