github.com/kobeld/docker@v1.12.0-rc1/docs/reference/commandline/plugin_disable.md (about)

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