We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5123927 commit 0756ceaCopy full SHA for 0756cea
docker-compose.yml
@@ -29,17 +29,19 @@ services:
29
- QDRANT_PORT=6333
30
command: python -m examples.run_mcp_server
31
ports:
32
- - "3001:3001" # Add this line to expose port 3001
+ - "3001:3001"
33
volumes:
34
- .:/app
35
depends_on:
36
- qdrant
37
38
mcp-proxy:
39
- image: ghcr.io/microsoft/mcp-proxy:latest # Use the official image
+ build:
40
+ context: .
41
+ dockerfile: Dockerfile
42
43
- "3000:3000"
- command: http://mcp-server:3001/sse --port 3000 --host 0.0.0.0 --allow-origin="*"
44
+ command: mcp-proxy http://mcp-server:3001/sse --port 3000 --host 0.0.0.0 --allow-origin="*"
45
46
- ./mcp-proxy-config.json:/app/mcp-proxy-config.json
47
0 commit comments