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 758ebef commit 13d0296Copy full SHA for 13d0296
docker-compose.yml
@@ -28,6 +28,8 @@ services:
28
- QDRANT_HOST=qdrant
29
- QDRANT_PORT=6333
30
command: python -m examples.run_mcp_server
31
+ ports:
32
+ - "3001:3001" # Add this line to expose port 3001
33
volumes:
34
- .:/app
35
depends_on:
@@ -42,6 +44,7 @@ services:
42
44
command: mcp-proxy http://mcp-server:3001/sse --port 3000 --host 0.0.0.0 --allow-origin="*"
43
45
46
- mcp-server
47
+ restart: on-failure # Add restart policy to retry connection
48
49
qdrant:
50
image: qdrant/qdrant
0 commit comments