|
How to list all Docker Images
Author: Venkata Sudhakar
Docker is an open platform to develop, ship, and run containerized applications.
It separates infra from application to ease application development and support anywhere development strategy. The below example shows how to list all Docker Images in local Docker repository.
01 | C:\>docker images --help |
03 | Usage: docker images [OPTIONS] [REPOSITORY[:TAG]] |
08 | -a, --all Show all images ( default hides intermediate images) |
09 | --digests Show digests |
10 | -f, --filter filter Filter output based on conditions provided |
11 | --format string Pretty-print images using a Go template |
12 | --no-trunc Don't truncate output |
13 | -q, --quiet Only show image IDs |
17 | REPOSITORY TAG IMAGE ID CREATED SIZE |
18 | jenkins/jenkins latest 0d3e7552f52a 5 days ago 721MB |
19 | ubuntu latest f63181f19b2f 2 weeks ago 72 .9MB |
20 | alpine/git latest 04dbb58d2cea 2 weeks ago 25 .1MB |
|
|