plugin_configure
Set runtime configuration options on an installed Docker plugin. Disable the plugin first, apply key-value settings, then re-enable to apply.
Instructions
Set runtime configuration options on an installed plugin.
Use plugin_inspect first to see which keys the plugin exposes under Settings.Env; pass
those same keys as a plain dict, e.g. {"DEBUG": "1", "SOCKET": "/run/x.sock"}. The
plugin must be disabled before reconfiguring — call plugin_disable first if it is
currently active, then plugin_enable afterwards to apply the new settings.
args: name - Plugin name or id (e.g. "vieux/sshfs:latest") options - Key/value settings to apply, matching the plugin's declared env keys returns: bool - True after configuration
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| options | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |