github.com/kim0/docker@v0.6.2-0.20161130212042-4addda3f07e7/docs/reference/commandline/plugin_enable.md (about) 1 --- 2 title: "plugin enable" 3 description: "the plugin enable command description and usage" 4 keywords: ["plugin, enable"] 5 advisory: "experimental" 6 --- 7 8 <!-- This file is maintained within the docker/docker Github 9 repository at https://github.com/docker/docker/. Make all 10 pull requests against that repo. If you see this file in 11 another repository, consider it read-only there, as it will 12 periodically be overwritten by the definitive file. Pull 13 requests which include edits to this file in other repositories 14 will be rejected. 15 --> 16 17 # plugin enable (experimental) 18 19 ```markdown 20 Usage: docker plugin enable PLUGIN 21 22 Enable a plugin 23 24 Options: 25 --help Print usage 26 ``` 27 28 Enables a plugin. The plugin must be installed before it can be enabled, 29 see [`docker plugin install`](plugin_install.md). 30 31 32 The following example shows that the `no-remove` plugin is installed, 33 but disabled: 34 35 ```bash 36 $ docker plugin ls 37 38 NAME TAG DESCRIPTION ENABLED 39 tiborvass/no-remove latest A test plugin for Docker false 40 ``` 41 42 To enable the plugin, use the following command: 43 44 ```bash 45 $ docker plugin enable tiborvass/no-remove 46 47 tiborvass/no-remove 48 49 $ docker plugin ls 50 51 NAME TAG DESCRIPTION ENABLED 52 tiborvass/no-remove latest A test plugin for Docker true 53 ``` 54 55 ## Related information 56 57 * [plugin ls](plugin_ls.md) 58 * [plugin disable](plugin_disable.md) 59 * [plugin inspect](plugin_inspect.md) 60 * [plugin install](plugin_install.md) 61 * [plugin rm](plugin_rm.md)