File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,27 @@ You can run MCP Gateway as a fully self-contained container. This is the recomme
4
4
5
5
---
6
6
7
+ ## Quick Start (Pre-built Container Image)
8
+
9
+ If you just want to run the gateway using the official OCI container image from GitHub Container Registry:
10
+
11
+ ``` bash
12
+ docker run -d --name mcpgateway \
13
+ -p 4444:4444 \
14
+ -e HOST=0.0.0.0 \
15
+ -e JWT_SECRET_KEY=my-test-key \
16
+ -e BASIC_AUTH_USER=admin \
17
+ -e BASIC_AUTH_PASSWORD=changeme \
18
+ -e AUTH_REQUIRED=true \
19
+ -e DATABASE_URL=sqlite:///./mcp.db \
20
+ --network=host \
21
+ ghcr.io/ibm/mcp-context-forge:latest
22
+
23
+ docker logs mcpgateway
24
+ ```
25
+
26
+ You can now access the UI at [ http://localhost:4444/admin ] ( http://localhost:4444/admin )
27
+
7
28
## 🐳 Build the Container
8
29
9
30
### Using Podman (recommended)
You can’t perform that action at this time.
0 commit comments