2016-11-09 17:49:09 -08:00
|
|
|
# plugin rm
|
2016-06-09 23:57:15 +02:00
|
|
|
|
2023-01-06 19:04:05 +01:00
|
|
|
<!---MARKER_GEN_START-->
|
2016-09-01 12:11:02 +08:00
|
|
|
Remove one or more plugins
|
2016-06-09 23:57:15 +02:00
|
|
|
|
2023-01-06 19:04:05 +01:00
|
|
|
### Aliases
|
2016-06-09 23:57:15 +02:00
|
|
|
|
2023-01-06 19:04:05 +01:00
|
|
|
`docker plugin rm`, `docker plugin remove`
|
|
|
|
|
|
|
|
### Options
|
|
|
|
|
|
|
|
| Name | Type | Default | Description |
|
|
|
|
|:----------------|:-----|:--------|:--------------------------------------|
|
|
|
|
| `-f`, `--force` | | | Force the removal of an active plugin |
|
|
|
|
|
|
|
|
|
|
|
|
<!---MARKER_GEN_END-->
|
2016-06-09 23:57:15 +02:00
|
|
|
|
2017-02-07 15:42:48 -08:00
|
|
|
## Description
|
|
|
|
|
2016-08-04 16:19:46 -07:00
|
|
|
Removes a plugin. You cannot remove a plugin if it is enabled, you must disable
|
2016-06-09 23:57:15 +02:00
|
|
|
a plugin using the [`docker plugin disable`](plugin_disable.md) before removing
|
2023-12-13 15:06:16 -08:00
|
|
|
it, or use `--force`. Use of `--force` is not recommended, since it can affect
|
|
|
|
functioning of running containers using the plugin.
|
2016-06-09 23:57:15 +02:00
|
|
|
|
2017-02-07 15:42:48 -08:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
The following example disables and removes the `sample-volume-plugin:latest`
|
|
|
|
plugin:
|
2016-06-09 23:57:15 +02:00
|
|
|
|
2021-08-21 14:54:14 +02:00
|
|
|
```console
|
2016-12-14 00:35:34 -08:00
|
|
|
$ docker plugin disable tiborvass/sample-volume-plugin
|
2017-04-28 05:24:49 +08:00
|
|
|
|
2016-12-14 00:35:34 -08:00
|
|
|
tiborvass/sample-volume-plugin
|
2016-07-20 23:37:55 +02:00
|
|
|
|
2016-12-14 00:35:34 -08:00
|
|
|
$ docker plugin rm tiborvass/sample-volume-plugin:latest
|
2017-04-28 05:24:49 +08:00
|
|
|
|
2016-12-14 00:35:34 -08:00
|
|
|
tiborvass/sample-volume-plugin
|
2016-06-09 23:57:15 +02:00
|
|
|
```
|
|
|
|
|
2017-02-07 15:42:48 -08:00
|
|
|
## Related commands
|
2016-06-09 23:57:15 +02:00
|
|
|
|
2016-10-04 12:01:19 -07:00
|
|
|
* [plugin create](plugin_create.md)
|
2016-06-09 23:57:15 +02:00
|
|
|
* [plugin disable](plugin_disable.md)
|
2016-11-14 08:38:06 -08:00
|
|
|
* [plugin enable](plugin_enable.md)
|
2016-06-09 23:57:15 +02:00
|
|
|
* [plugin inspect](plugin_inspect.md)
|
|
|
|
* [plugin install](plugin_install.md)
|
2016-11-14 08:38:06 -08:00
|
|
|
* [plugin ls](plugin_ls.md)
|
|
|
|
* [plugin push](plugin_push.md)
|
2016-10-31 17:07:05 -07:00
|
|
|
* [plugin set](plugin_set.md)
|
2017-01-28 16:54:32 -08:00
|
|
|
* [plugin upgrade](plugin_upgrade.md)
|