Skip to content

Commit 67719fc

Browse files
committed
fix: update mcp-proxy service to build from Dockerfile and correct command syntax
1 parent b738bc7 commit 67719fc

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docker-compose.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,12 @@ services:
3434
- qdrant
3535

3636
mcp-proxy:
37-
image: ghcr.io/microsoft/mcp-proxy:latest
37+
build:
38+
context: .
39+
dockerfile: Dockerfile
3840
ports:
3941
- "3000:3000"
40-
command: http://mcp-server:3001/sse --port 3000 --host 0.0.0.0 --allow-origin="*"
42+
command: python -m mcp.proxy http://mcp-server:3001/sse --port 3000 --host 0.0.0.0 --allow-origin="*"
4143
depends_on:
4244
- mcp-server
4345

0 commit comments

Comments
 (0)