| package client // import "github.com/docker/docker/client" | |
| import ( | |
| "context" | |
| "net/url" | |
| "github.com/docker/docker/api/types" | |
| ) | |
| // PluginRemove removes a plugin | |
| func (cli *Client) PluginRemove(ctx context.Context, name string, options types.PluginRemoveOptions) error { | |
| query := url.Values{} | |
| if options.Force { | |
| query.Set("force", "1") | |
| } | |
| resp, err := cli.delete(ctx, "/plugins/"+name, query, nil) | |
| defer ensureReaderClosed(resp) | |
| return err | |
| } |