Fix invalid docker command and invalid JSON in the mcpServers example. (#3672)

This commit is contained in:
neo.alienson
2025-07-10 16:33:04 +08:00
committed by GitHub
parent 316c0fa37b
commit 5ecc13729a

View File

@@ -136,11 +136,11 @@ In addition to a project settings file, a project's `.gemini` directory can cont
},
"myDockerServer": {
"command": "docker",
"args": ["run", "i", "--rm", "-e", "API_KEY", "ghcr.io/foo/bar"],
"args": ["run", "-i", "--rm", "-e", "API_KEY", "ghcr.io/foo/bar"],
"env": {
"API_KEY": "$MY_API_TOKEN"
}
},
}
}
```