github.com/kobeld/docker@v1.12.0-rc1/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  [menu.main]
     7  parent = "smn_cli"
     8  advisory = "experimental"
     9  +++
    10  <![end-metadata]-->
    11  
    12  # plugin enable (experimental)
    13  
    14      Usage: docker plugin enable PLUGIN
    15  
    16      Enable a plugin
    17  
    18        --help             Print usage
    19  
    20  Enables a plugin. The plugin must be installed before it can be enabled,
    21  see [`docker plugin install`](plugin_install.md).
    22  
    23  
    24  The following example shows that the `no-remove` plugin is currently installed,
    25  but disabled ("inactive"):
    26  
    27  ```bash
    28  $ docker plugin ls
    29  NAME                	VERSION             ACTIVE
    30  tiborvass/no-remove	latest              false
    31  ```
    32  To enable the plugin, use the following command:
    33  
    34  ```bash
    35  $ docker plugin enable tiborvass/no-remove:latest
    36  ```
    37  
    38  After the plugin is enabled, it appears as "active" in the list of plugins:
    39  
    40  ```bash
    41  $ docker plugin ls
    42  NAME                	VERSION             ACTIVE
    43  tiborvass/no-remove	latest              true
    44  ```
    45  
    46  ## Related information
    47  
    48  * [plugin ls](plugin_ls.md)
    49  * [plugin disable](plugin_disable.md)
    50  * [plugin inspect](plugin_inspect.md)
    51  * [plugin install](plugin_install.md)
    52  * [plugin rm](plugin_rm.md)