configure_plugin
Update configuration settings on a Docker plugin by disabling it, applying new environment variable values, then re-enabling it.
Instructions
Set runtime configuration options on an installed plugin.
Use get_plugin 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 disable_plugin first if it is
currently active, then enable_plugin 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 |