Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ docker run -d --rm \
-v mcpproxy-npm:/root/.npm \
-v mcpproxy-uv-tools:/root/.local/share/uv \
-v mcpproxy-mcp-auth:/app/.mcp-auth \
-v mcpproxy-rest-auth:/app/.rest-auth \
-e MCP_REMOTE_CONFIG_DIR=/app/.mcp-auth \
--name mcpproxy \
ghcr.io/billjr99/mcpproxy:latest
Expand Down Expand Up @@ -373,10 +374,15 @@ docker run -d \
-v mcpproxy-npm:/root/.npm \
-v mcpproxy-uv-tools:/root/.local/share/uv \
-v mcpproxy-mcp-auth:/app/.mcp-auth \
-v mcpproxy-rest-auth:/app/.rest-auth \
--name mcpproxy \
ghcr.io/billjr99/mcpproxy:latest
```

The `mcpproxy-rest-auth` volume persists OAuth tokens for REST `authorization_code`
providers (see [REST / OAuth providers](#rest--oauth-providers)) so you authorize once
rather than on every fresh container. Omit it if you don't use REST OAuth providers.
Comment on lines +382 to +384

#### `.env`: the two flags it needs, and why

The `.env` file is referenced **twice** above, and each reference does a different job —
Expand Down
Loading