docker-images

list Docker images stored locally

TLDR

List all images
$ docker images
List with digests
$ docker images --digests
List only image IDs
$ docker images -q
Filter by repository
$ docker images [repository]
Show dangling images
$ docker images -f dangling=true

SYNOPSIS

docker images [options] [repository[:tag]]

DESCRIPTION

docker images lists images stored on the local system. Shorthand for docker image ls. Shows repository, tag, image ID, creation time, and size. Images are the templates from which containers are created, containing the filesystem and configuration needed to run an application.

PARAMETERS

-a, --all

Show all images (including intermediate layers).
-q, --quiet
Only show image IDs.
--digests
Show digests.
-f, --filter filter
Filter output.
--format string
Format output using a custom template: table, table TEMPLATE, json, or a Go template string.
--no-trunc
Don't truncate output.

INSTALL

sudo apt install docker-cli
sudo dnf install docker-cli
sudo pacman -S docker
sudo apk add docker-cli
sudo zypper install docker
brew install docker
nix profile install nixpkgs#docker

SEE ALSO

docker-image-ls(1), docker-rmi(1), docker-pull(1)