--- syntax: markdown tags: [tldr, common] source: https://github.com/tldr-pages/tldr.git --- # docker image ls > Manage Docker images. > More information: . - List all Docker images: `docker image ls` - List all Docker images including intermediates: `docker image ls {{[-a|--all]}}` - List the output in quiet mode (only numeric IDs): `docker image ls {{[-q|--quiet]}}` - List all Docker images not used by any container: `docker image ls {{[-f|--filter]}} dangling=true` - List images that contain a substring in their name: `docker image ls "{{*name*}}"` - Sort images by size: `docker image ls --format "\{\{.ID\}\} \{\{.Size\}\} \{\{.Repository\}\}:\{\{.Tag\}\}" | sort {{[-k|--key]}} 2 {{[-h|--human-numeric-sort]}}`