-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathcompose.yml
More file actions
28 lines (27 loc) · 783 Bytes
/
compose.yml
File metadata and controls
28 lines (27 loc) · 783 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
services:
mcp-bridge:
build:
context: .
develop:
watch:
- path: mcp_bridge
action: rebuild
container_name: mcp-bridge
ports:
- "8000:8000"
environment:
- MCP_BRIDGE__CONFIG__FILE=config.json # mount the config file for this to work
# - MCP_BRIDGE__CONFIG__HTTP_URL=http://10.88.100.170:8888/config.json
# - MCP_BRIDGE__CONFIG__JSON=
# volumes:
# - ./config.json:/mcp_bridge/config.json
restart: unless-stopped
jaeger:
image: jaegertracing/jaeger:latest
ports:
- "16686:16686" # Web UI
# - "4317:4317" # OTLP gRPC
- "4318:4318" # OTLP HTTP
# - "5778:5778" # Config server
# - "9411:9411" # Zipkin compatible
restart: unless-stopped