.nh .TH "DOCKER" "1" "Jan 2024" "Docker Community" "Docker User Manuals" .SH NAME .PP docker-plugin-ls - List plugins .SH SYNOPSIS .PP \fBdocker plugin ls [OPTIONS]\fP .SH DESCRIPTION .PP Lists all the plugins that are currently installed. You can install plugins using the \fBdocker plugin install\fR command. You can also filter using the \fB-f\fR or \fB--filter\fR flag. .SH Filters .PP Filter output based on these conditions: - enabled=(true|false) - plugins that are enabled or not - capability= - filters plugins based on capabilities (currently \fBvolumedriver\fR, \fBnetworkdriver\fR, \fBipamdriver\fR, or \fBauthz\fR) .SH Format .PP Pretty-print plugins using a Go template. Valid placeholders: .ID - Plugin ID. .Name - Plugin Name. .Description - Plugin description. .Enabled - Whether plugin is enabled or not. .SH EXAMPLES .SH Display all plugins .EX $ docker plugin ls ID NAME DESCRIPTION ENABLED 869080b57404 tiborvass/sample-volume-plugin:latest A sample volume plugin for Docker true 141bf6c02ddd vieux/sshfs:latest sshFS plugin for Docker false .EE .SH Display plugins with their ID and names .EX $ docker plugin ls --format "{{.ID}}: {{.Name}}" 869080b57404: tiborvass/sample-volume-plugin:latest .EE .SH Display enabled plugins .EX $ docker plugin ls --filter enabled=true ID NAME DESCRIPTION ENABLED 869080b57404 tiborvass/sample-volume-plugin:latest A sample volume plugin for Docker true .EE .SH Display plugins with \fBvolumedriver\fR capability .EX $ docker plugin ls --filter capability=volumedriver --format "table {{.ID}}\\t{{.Name}}" ID Name 869080b57404 tiborvass/sample-volume-plugin:latest .EE .SH OPTIONS .PP \fB-f\fP, \fB--filter\fP= Provide filter values (e.g. 'enabled=true') .PP \fB--format\fP="" Pretty-print plugins using a Go template .PP \fB-h\fP, \fB--help\fP[=false] help for ls .PP \fB--no-trunc\fP[=false] Don't truncate output .PP \fB-q\fP, \fB--quiet\fP[=false] Only display plugin IDs .SH SEE ALSO .PP \fBdocker-plugin(1)\fP