-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.codex.yml
More file actions
118 lines (111 loc) · 2.69 KB
/
docker-compose.codex.yml
File metadata and controls
118 lines (111 loc) · 2.69 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
services:
# MCP Servers for Codex integration under WSL2
# Optimized for stable startup: pinned versions, volume caching, disabled audit
mcp-memory:
build:
context: .
dockerfile: Dockerfile.mcp-memory
image: bioetl-mcp-memory:latest
container_name: bioetl-mcp-memory
restart: unless-stopped
stdin_open: true
tty: true
volumes:
- ./docs/00-project/ai/memory:/app/memory
environment:
MEMORY_FILE_PATH: /app/memory/mcp-memory.json
networks:
- warp-network
healthcheck:
test: ["CMD", "pgrep", "-f", "node"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
mcp-filesystem:
build:
context: .
dockerfile: Dockerfile.mcp-filesystem
image: bioetl-mcp-filesystem:latest
container_name: bioetl-mcp-filesystem
restart: unless-stopped
stdin_open: true
tty: true
volumes:
- ./:/app
networks:
- warp-network
healthcheck:
test: ["CMD", "pgrep", "-f", "node"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
mcp-github:
build:
context: .
dockerfile: Dockerfile.mcp-github
image: bioetl-mcp-github:latest
container_name: bioetl-mcp-github
restart: unless-stopped
stdin_open: true
tty: true
environment:
GITHUB_PERSONAL_ACCESS_TOKEN: ${GITHUB_PERSONAL_ACCESS_TOKEN:-}
networks:
- warp-network
healthcheck:
test: ["CMD", "pgrep", "-f", "node"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
mcp-fetch:
build:
context: .
dockerfile: Dockerfile.mcp-fetch
image: bioetl-mcp-fetch:latest
container_name: bioetl-mcp-fetch
restart: unless-stopped
stdin_open: true
tty: true
volumes:
- mcp-fetch-cache:/home/mcpuser/.cache
networks:
- warp-network
healthcheck:
test: ["CMD", "pgrep", "-f", "mcp-server-fetch"]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
mcp-codex-config:
image: caddy:alpine
container_name: bioetl-codex-config
restart: unless-stopped
ports:
- "9100:9100"
volumes:
- ./:/data
- ./.codex:/data/.codex
networks:
- warp-network
depends_on:
mcp-memory:
condition: service_started
mcp-filesystem:
condition: service_started
mcp-github:
condition: service_started
healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost:9100/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
networks:
warp-network:
external: true
name: warp-network
volumes:
mcp-fetch-cache: