github.com/kim0/docker@v0.6.2-0.20161130212042-4addda3f07e7/docs/reference/commandline/plugin_rm.md (about)

     1  ---
     2  title: "plugin rm"
     3  description: "the plugin rm command description and usage"
     4  keywords: ["plugin, rm"]
     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 rm (experimental)
    18  
    19  ```markdown
    20  Usage:  docker plugin rm [OPTIONS] PLUGIN [PLUGIN...]
    21  
    22  Remove one or more plugins
    23  
    24  Aliases:
    25    rm, remove
    26  
    27  Options:
    28        -f, --force  Force the removal of an active plugin
    29            --help   Print usage
    30  ```
    31  
    32  Removes a plugin. You cannot remove a plugin if it is enabled, you must disable
    33  a plugin using the [`docker plugin disable`](plugin_disable.md) before removing
    34  it (or use --force, use of force is not recommended, since it can affect
    35  functioning of running containers using the plugin).
    36  
    37  The following example disables and removes the `no-remove:latest` plugin;
    38  
    39  ```bash
    40  $ docker plugin disable tiborvass/no-remove
    41  tiborvass/no-remove
    42  
    43  $ docker plugin rm tiborvass/no-remove:latest
    44  tiborvass/no-remove
    45  ```
    46  
    47  ## Related information
    48  
    49  * [plugin ls](plugin_ls.md)
    50  * [plugin enable](plugin_enable.md)
    51  * [plugin disable](plugin_disable.md)
    52  * [plugin inspect](plugin_inspect.md)
    53  * [plugin install](plugin_install.md)