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
@@ -362,7 +362,7 @@ docker run -d --name mcpgateway \
362
362
-e JWT_SECRET_KEY=my-test-key \
363
363
-e BASIC_AUTH_USER=admin \
364
364
-e BASIC_AUTH_PASSWORD=changeme \
365
-
ghcr.io/ibm/mcp-context-forge:0.2.0
365
+
ghcr.io/ibm/mcp-context-forge:0.3.0
366
366
```
367
367
368
368
SQLite now lives on the host at `./data/mcp.db`.
@@ -376,7 +376,7 @@ docker run -d --name mcpgateway \
376
376
-e PORT=4444 \
377
377
-e DATABASE_URL=sqlite:////data/mcp.db \
378
378
-v $(pwd)/data:/data \
379
-
ghcr.io/ibm/mcp-context-forge:0.2.0
379
+
ghcr.io/ibm/mcp-context-forge:0.3.0
380
380
```
381
381
382
382
Using `--network=host` allows Docker to access the local network, allowing you to add MCP servers running on your host. See [Docker Host network driver documentation](https://docs.docker.com/engine/network/drivers/host/) for more details.
@@ -392,7 +392,7 @@ podman run -d --name mcpgateway \
392
392
-p 4444:4444 \
393
393
-e HOST=0.0.0.0 \
394
394
-e DATABASE_URL=sqlite:///./mcp.db \
395
-
ghcr.io/ibm/mcp-context-forge:0.2.0
395
+
ghcr.io/ibm/mcp-context-forge:0.3.0
396
396
```
397
397
398
398
#### 2 - Persist SQLite
@@ -405,7 +405,7 @@ podman run -d --name mcpgateway \
405
405
-p 4444:4444 \
406
406
-v $(pwd)/data:/data \
407
407
-e DATABASE_URL=sqlite:////data/mcp.db \
408
-
ghcr.io/ibm/mcp-context-forge:0.2.0
408
+
ghcr.io/ibm/mcp-context-forge:0.3.0
409
409
```
410
410
411
411
#### 3 - Host networking (rootless)
@@ -415,7 +415,7 @@ podman run -d --name mcpgateway \
415
415
--network=host \
416
416
-v $(pwd)/data:/data \
417
417
-e DATABASE_URL=sqlite:////data/mcp.db \
418
-
ghcr.io/ibm/mcp-context-forge:0.2.0
418
+
ghcr.io/ibm/mcp-context-forge:0.3.0
419
419
```
420
420
421
421
---
@@ -424,7 +424,7 @@ podman run -d --name mcpgateway \
***.env files** - Put all the `-e FOO=` lines into a file and replace them with `--env-file .env`. See the provided [.env.example](.env.example) for reference.
427
-
***Pinned tags** - Use an explicit version (e.g. `v0.2.0`) instead of `latest` for reproducible builds.
427
+
***Pinned tags** - Use an explicit version (e.g. `v0.3.0`) instead of `latest` for reproducible builds.
428
428
***JWT tokens** - Generate one in the running container:
0 commit comments