-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.fixture-stack.yml
More file actions
50 lines (50 loc) · 1.09 KB
/
docker-compose.fixture-stack.yml
File metadata and controls
50 lines (50 loc) · 1.09 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
services:
httpbin:
image: mccutchen/go-httpbin
ports:
- "127.0.0.1:18082:8080"
mitmproxy:
image: mitmproxy/mitmproxy:11.0.2
command:
- mitmweb
- --listen-host
- 0.0.0.0
- --listen-port
- "8080"
- --web-host
- 0.0.0.0
- --web-port
- "8081"
ports:
- "127.0.0.1:18080:8080"
- "127.0.0.1:18081:8081"
volumes:
- ./.mitmproxy:/home/mitmproxy/.mitmproxy
mcp-hello-http:
image: ghcr.io/astral-sh/uv:python3.13-bookworm-slim
working_dir: /workspace/mcp-servers
command:
- python
- hello_http.py
- --host
- 0.0.0.0
- --port
- "39231"
ports:
- "127.0.0.1:39231:39231"
volumes:
- ./mcp-servers:/workspace/mcp-servers:ro
mcp-hello-sse:
image: ghcr.io/astral-sh/uv:python3.13-bookworm-slim
working_dir: /workspace/mcp-servers
command:
- python
- hello_sse.py
- --host
- 0.0.0.0
- --port
- "39232"
ports:
- "127.0.0.1:39232:39232"
volumes:
- ./mcp-servers:/workspace/mcp-servers:ro