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