github.com/kim0/docker@v0.6.2-0.20161130212042-4addda3f07e7/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 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 ls (experimental) 18 19 ```markdown 20 Usage: docker plugin ls [OPTIONS] 21 22 List plugins 23 24 Aliases: 25 ls, list 26 27 Options: 28 --help Print usage 29 --no-trunc Don't truncate output 30 ``` 31 32 Lists all the plugins that are currently installed. You can install plugins 33 using the [`docker plugin install`](plugin_install.md) command. 34 35 Example output: 36 37 ```bash 38 $ docker plugin ls 39 40 NAME TAG DESCRIPTION ENABLED 41 tiborvass/no-remove latest A test plugin for Docker true 42 ``` 43 44 ## Related information 45 46 * [plugin enable](plugin_enable.md) 47 * [plugin disable](plugin_disable.md) 48 * [plugin inspect](plugin_inspect.md) 49 * [plugin install](plugin_install.md) 50 * [plugin rm](plugin_rm.md)