github.com/sld880311/docker@v0.0.0-20200524143708-d5593973a475/docs/reference/commandline/plugin_ls.md (about)

     1  ---
     2  title: "plugin ls"
     3  description: "The plugin ls command description and usage"
     4  keywords: "plugin, list"
     5  ---
     6  
     7  <!-- This file is maintained within the docker/docker Github
     8       repository at https://github.com/docker/docker/. Make all
     9       pull requests against that repo. If you see this file in
    10       another repository, consider it read-only there, as it will
    11       periodically be overwritten by the definitive file. Pull
    12       requests which include edits to this file in other repositories
    13       will be rejected.
    14  -->
    15  
    16  # plugin ls
    17  
    18  ```markdown
    19  Usage:  docker plugin ls [OPTIONS]
    20  
    21  List plugins
    22  
    23  Aliases:
    24    ls, list
    25  
    26  Options:
    27        --help	   Print usage
    28        --no-trunc   Don't truncate output
    29  ```
    30  
    31  ## Description
    32  
    33  Lists all the plugins that are currently installed. You can install plugins
    34  using the [`docker plugin install`](plugin_install.md) command.
    35  
    36  ## Examples
    37  
    38  ```bash
    39  $ docker plugin ls
    40  
    41  ID                  NAME                             TAG                 DESCRIPTION                ENABLED
    42  69553ca1d123        tiborvass/sample-volume-plugin   latest              A test plugin for Docker   true
    43  ```
    44  
    45  ## Related commands
    46  
    47  * [plugin create](plugin_create.md)
    48  * [plugin disable](plugin_disable.md)
    49  * [plugin enable](plugin_enable.md)
    50  * [plugin inspect](plugin_inspect.md)
    51  * [plugin install](plugin_install.md)
    52  * [plugin push](plugin_push.md)
    53  * [plugin rm](plugin_rm.md)
    54  * [plugin set](plugin_set.md)
    55  * [plugin upgrade](plugin_upgrade.md)