2019-06-07 11:14:58 +01:00
|
|
|
# docker images
|
|
|
|
|
|
|
|
> Manage Docker images.
|
|
|
|
> More information: <https://docs.docker.com/engine/reference/commandline/images/>.
|
|
|
|
|
|
|
|
- List all Docker images:
|
|
|
|
|
|
|
|
`docker images`
|
|
|
|
|
|
|
|
- List all Docker images including intermediates:
|
|
|
|
|
2020-10-28 18:12:48 +00:00
|
|
|
`docker images --all`
|
2019-06-07 11:14:58 +01:00
|
|
|
|
|
|
|
- List the output in quiet mode (only numeric IDs):
|
|
|
|
|
2020-10-28 18:12:48 +00:00
|
|
|
`docker images --quiet`
|
2019-06-07 11:14:58 +01:00
|
|
|
|
|
|
|
- List all Docker images not used by any container:
|
|
|
|
|
|
|
|
`docker images --filter dangling=true`
|
2020-10-28 18:12:48 +00:00
|
|
|
|
|
|
|
- List images that contain a substring in their name:
|
|
|
|
|
|
|
|
`docker images "{{*name*}}"`
|