2016-06-09 23:57:15 +02:00
|
|
|
<!--[metadata]>
|
|
|
|
+++
|
|
|
|
title = "plugin disable"
|
|
|
|
description = "the plugin disable command description and usage"
|
|
|
|
keywords = ["plugin, disable"]
|
2016-06-16 11:52:34 -07:00
|
|
|
advisory = "experimental"
|
2016-06-09 23:57:15 +02:00
|
|
|
[menu.main]
|
|
|
|
parent = "smn_cli"
|
|
|
|
+++
|
|
|
|
<![end-metadata]-->
|
|
|
|
|
|
|
|
# plugin disable (experimental)
|
|
|
|
|
2016-07-07 20:43:18 +02:00
|
|
|
```markdown
|
|
|
|
Usage: docker plugin disable PLUGIN
|
2016-06-09 23:57:15 +02:00
|
|
|
|
2016-07-07 20:43:18 +02:00
|
|
|
Disable a plugin
|
2016-06-09 23:57:15 +02:00
|
|
|
|
2016-07-07 20:43:18 +02:00
|
|
|
Options:
|
|
|
|
--help Print usage
|
|
|
|
```
|
2016-06-09 23:57:15 +02:00
|
|
|
|
|
|
|
Disables a plugin. The plugin must be installed before it can be disabled,
|
|
|
|
see [`docker plugin install`](plugin_install.md).
|
|
|
|
|
|
|
|
|
2016-07-20 23:37:55 +02:00
|
|
|
The following example shows that the `no-remove` plugin is installed
|
2016-08-04 16:19:46 -07:00
|
|
|
and enabled:
|
2016-06-09 23:57:15 +02:00
|
|
|
|
|
|
|
```bash
|
|
|
|
$ docker plugin ls
|
2016-07-20 23:37:55 +02:00
|
|
|
|
2016-08-04 16:19:46 -07:00
|
|
|
NAME TAG DESCRIPTION ENABLED
|
2016-08-09 15:44:54 -07:00
|
|
|
tiborvass/no-remove latest A test plugin for Docker true
|
2016-06-09 23:57:15 +02:00
|
|
|
```
|
2016-07-20 23:37:55 +02:00
|
|
|
|
2016-06-09 23:57:15 +02:00
|
|
|
To disable the plugin, use the following command:
|
|
|
|
|
|
|
|
```bash
|
2016-07-20 23:37:55 +02:00
|
|
|
$ docker plugin disable tiborvass/no-remove
|
|
|
|
|
|
|
|
tiborvass/no-remove
|
2016-06-09 23:57:15 +02:00
|
|
|
|
|
|
|
$ docker plugin ls
|
2016-07-20 23:37:55 +02:00
|
|
|
|
2016-08-04 16:19:46 -07:00
|
|
|
NAME TAG DESCRIPTION ENABLED
|
2016-08-09 15:44:54 -07:00
|
|
|
tiborvass/no-remove latest A test plugin for Docker false
|
2016-06-09 23:57:15 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
## Related information
|
|
|
|
|
|
|
|
* [plugin ls](plugin_ls.md)
|
|
|
|
* [plugin enable](plugin_enable.md)
|
|
|
|
* [plugin inspect](plugin_inspect.md)
|
|
|
|
* [plugin install](plugin_install.md)
|
|
|
|
* [plugin rm](plugin_rm.md)
|