github.com/flavio/docker@v0.1.3-0.20170117145210-f63d1a6eec47/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 Lists all the plugins that are currently installed. You can install plugins 32 using the [`docker plugin install`](plugin_install.md) command. 33 34 Example output: 35 36 ```bash 37 $ docker plugin ls 38 39 ID NAME TAG DESCRIPTION ENABLED 40 69553ca1d123 tiborvass/sample-volume-plugin latest A test plugin for Docker true 41 ``` 42 43 ## Related information 44 45 * [plugin create](plugin_create.md) 46 * [plugin disable](plugin_disable.md) 47 * [plugin enable](plugin_enable.md) 48 * [plugin inspect](plugin_inspect.md) 49 * [plugin install](plugin_install.md) 50 * [plugin push](plugin_push.md) 51 * [plugin rm](plugin_rm.md) 52 * [plugin set](plugin_set.md)