Skip to content
Open

Dev #125

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,7 @@ cython_debug/
## custom
commands.md
compose.yml
config.json
config.json
.qwen/
tools.json
response.json
9 changes: 4 additions & 5 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,20 @@ services:
- path: mcp_bridge
action: rebuild
container_name: mcp-bridge
ports:
- "8000:8000"
network_mode: host
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
volumes:
- ./config.json:/mcp_bridge/config.json
restart: unless-stopped

jaeger:
image: jaegertracing/jaeger:latest
ports:
- "16686:16686" # Web UI
# - "4317:4317" # OTLP gRPC
- "4317:4317" # OTLP gRPC
- "4318:4318" # OTLP HTTP
# - "5778:5778" # Config server
# - "9411:9411" # Zipkin compatible
Expand Down
Loading