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/quickstart.mdx
+26-35Lines changed: 26 additions & 35 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -276,32 +276,36 @@ Your project includes a pre-configured `mcp.Dockerfile` for easy deployment. Thi
276
276
- Apollo MCP Server for MCP protocol support
277
277
- All necessary dependencies
278
278
279
-
**Build the container:**
280
-
```bash
281
-
docker build -f mcp.Dockerfile -t my-mcp-server .
282
-
```
279
+
1. Build the container:
283
280
284
-
**Run locally:**
285
-
```bash
286
-
docker run -p 4000:4000 -p 5050:5050 \
287
-
-e APOLLO_KEY=$APOLLO_KEY \
288
-
-e APOLLO_GRAPH_REF=$APOLLO_GRAPH_REF \
289
-
-e MCP_ENABLE=1 \
290
-
my-mcp-server
291
-
```
281
+
```bash
282
+
docker build -f mcp.Dockerfile -t my-mcp-server .
283
+
```
284
+
285
+
1. Run locally:
286
+
287
+
```bash
288
+
docker run -p 4000:4000 -p 5050:5050 \
289
+
-e APOLLO_KEY=$APOLLO_KEY \
290
+
-e APOLLO_GRAPH_REF=$APOLLO_GRAPH_REF \
291
+
-e MCP_ENABLE=1 \
292
+
my-mcp-server
293
+
```
294
+
295
+
1. Deploy to your platform. The container can be deployed to any platform supporting Docker, such as: AWS ECS/Fargate, Google Cloud Run, Azure Container Instances, Kubernetes, Fly.io, Railway, Render.
292
296
293
-
**Deploy to your platform:**
297
+
1. Ensure these variables are set in your deployment environment:
294
298
295
-
The container can be deployed to any platform supporting Docker:
0 commit comments