-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgordon-mcp.yml
More file actions
62 lines (53 loc) · 982 Bytes
/
gordon-mcp.yml
File metadata and controls
62 lines (53 loc) · 982 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
version: '3.9'
services:
gordon:
image: docker/gordon:latest
volumes:
- ./gordon-mcp.yml:/root/.gordon/gordon-mcp.yml
tty: true
stdin_open: true
depends_on:
- llm
- postgres
- sqlite
- filesystem
- git
- github
- fetch
- time
environment:
- GITHUB_TOKEN=${GITHUB_TOKEN}
llm:
image: ai/mistral
ports:
- "11434:11434"
command: ["serve"]
postgres:
image: postgres:latest
environment:
POSTGRES_PASSWORD: dev
ports:
- "5433:5432"
sqlite:
image: mcp/sqlite
command: /data/database.db
volumes:
- ./data:/data
filesystem:
image: mcp/filesystem
command: ["/rootfs"]
volumes:
- .:/rootfs
git:
image: mcp/git
command: /repo
volumes:
- ./repo:/repo
github:
image: mcp/github
environment:
- GITHUB_TOKEN=${GITHUB_TOKEN}
fetch:
image: mcp/fetch
time:
image: mcp/time