LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

docker-images

list Docker images stored locally

TLDR

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

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
copy
sudo dnf install docker-cli
copy
sudo pacman -S docker
copy
sudo apk add docker-cli
copy
sudo zypper install docker
copy
brew install docker
copy
nix profile install nixpkgs#docker
copy

SEE ALSO

Copied to clipboard
Kai