Skip to content

Commit cd72dc1

Browse files
authored
Merge pull request #436 from apollographql/fix-volume-mount
docs: add container destination path for config file
2 parents ea9e5b4 + 6bd7a8a commit cd72dc1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/source/deploy.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ schema:
7171
docker run \
7272
-it --rm \
7373
--name apollo-mcp-server \
74-
-p 5050:5050 \
75-
-v <path/to>/mcp_config.yaml \
74+
-p 5050:5000 \
75+
-v <path/to>/mcp_config.yaml:/config.yaml \
7676
-v $PWD/graphql/TheSpaceDevs:/data \
7777
--pull always \
7878
ghcr.io/apollographql/apollo-mcp-server:latest /config.yaml

docs/source/quickstart.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Your project includes a pre-configured `mcp.Dockerfile` for easy deployment. Thi
265265
1. Run locally:
266266

267267
```bash
268-
docker run -p 4000:4000 -p 5050:5050 \
268+
docker run -p 4000:4000 -p 5050:5000 \
269269
-e APOLLO_KEY=$APOLLO_KEY \
270270
-e APOLLO_GRAPH_REF=$APOLLO_GRAPH_REF \
271271
-e MCP_ENABLE=1 \
@@ -280,7 +280,7 @@ Your project includes a pre-configured `mcp.Dockerfile` for easy deployment. Thi
280280
| ---------------------------- | ------------------------------- | -------- |
281281
| `APOLLO_KEY` | Your graph's API key | Yes |
282282
| `APOLLO_GRAPH_REF` | Your graph reference | Yes |
283-
| `APOLLO_MCP_TRANSPORT__PORT` | MCP server port (default: 5050) | No |
283+
| `APOLLO_MCP_TRANSPORT__PORT` | MCP server port (default: 5000) | No |
284284
| `APOLLO_ROUTER_PORT` | Router port (default: 4000) | No |
285285

286286
For more deployment options, see the [Deploy the MCP Server](/apollo-mcp-server/deploy) page.

0 commit comments

Comments
 (0)