github.com/vieux/docker@v0.6.3-0.20161004191708-e097c2a938c7/docs/reference/commandline/plugin_enable.md (about)

     1  <!--[metadata]>
     2  +++
     3  title = "plugin enable"
     4  description = "the plugin enable command description and usage"
     5  keywords = ["plugin, enable"]
     6  advisory = "experimental"
     7  [menu.main]
     8  parent = "smn_cli"
     9  +++
    10  <![end-metadata]-->
    11  
    12  # plugin enable (experimental)
    13  
    14  ```markdown
    15  Usage:  docker plugin enable PLUGIN
    16  
    17  Enable a plugin
    18  
    19  Options:
    20        --help   Print usage
    21  ```
    22  
    23  Enables a plugin. The plugin must be installed before it can be enabled,
    24  see [`docker plugin install`](plugin_install.md).
    25  
    26  
    27  The following example shows that the `no-remove` plugin is installed,
    28  but disabled:
    29  
    30  ```bash
    31  $ docker plugin ls
    32  
    33  NAME                  TAG                 DESCRIPTION                ENABLED
    34  tiborvass/no-remove   latest              A test plugin for Docker   false
    35  ```
    36  
    37  To enable the plugin, use the following command:
    38  
    39  ```bash
    40  $ docker plugin enable tiborvass/no-remove
    41  
    42  tiborvass/no-remove
    43  
    44  $ docker plugin ls
    45  
    46  NAME                  TAG                 DESCRIPTION                ENABLED
    47  tiborvass/no-remove   latest              A test plugin for Docker   true
    48  ```
    49  
    50  ## Related information
    51  
    52  * [plugin ls](plugin_ls.md)
    53  * [plugin disable](plugin_disable.md)
    54  * [plugin inspect](plugin_inspect.md)
    55  * [plugin install](plugin_install.md)
    56  * [plugin rm](plugin_rm.md)