Update fetch Docker to not have ux in final stage

This commit is contained in:
Jim Clark
2024-12-19 16:04:57 -08:00
parent f63029468d
commit 4fa1c47b0a
2 changed files with 14 additions and 5 deletions

View File

@@ -123,11 +123,13 @@ Add this to your `claude_desktop_config.json`:
<details>
<summary>Using docker</summary>
* Note: replace '/Users/username' with the a path that you want to be accessible by this tool
```json
"mcpServers": {
"git": {
"command": "docker",
"args": ["run", "--rm", "-i", "--mount", "type=bind,src=/Users/username,dst=/projects", "mcp/git"]
"args": ["run", "--rm", "-i", "--mount", "type=bind,src=/Users/username,dst=/Users/username", "mcp/git"]
}
}
```