You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/guides/index.mdx
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -179,19 +179,18 @@ The Apollo Runtime container includes all services necessary to serve GraphQL an
179
179
180
180
To serve both MCP and GraphQL requests, both port `4000` and `5000` will need to be exposed. An example command which retrieves the schema from Uplink is:
181
181
182
-
```bash title="Docker" {3, 6}
182
+
```bash title="Docker" {3, 6}
183
183
docker run \
184
184
-p 4000:4000 \
185
185
-p 5000:5000 \
186
186
--env APOLLO_GRAPH_REF="<your-graph-ref>" \
187
187
--env APOLLO_KEY="<your-graph-api-key>" \
188
188
--env MCP_ENABLE=1 \
189
-
--env MCP_UPLINK=1 \
190
189
--rm \
191
190
ghcr.io/apollographql/apollo-runtime:latest
192
191
```
193
192
194
-
To learn more, review the [Apollo Runtime container documentation](/docs/graphos/routing/self-hosted/containerization/docker).
193
+
To learn more, review the [Apollo Runtime container documentation](/graphos/routing/self-hosted/containerization/docker).
0 commit comments