LinuxCommandLibrary

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 Go template.
--no-trunc
Don't truncate output.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community