tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Docker > How to list all Docker Images

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.

01C:\>docker images --help
02 
03Usage:  docker images [OPTIONS] [REPOSITORY[:TAG]]
04 
05List images
06 
07Options:
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
14 
15 
16C:\>docker images
17REPOSITORY        TAG       IMAGE ID       CREATED       SIZE
18jenkins/jenkins   latest    0d3e7552f52a   5 days ago    721MB
19ubuntu            latest    f63181f19b2f   2 weeks ago   72.9MB
20alpine/git        latest    04dbb58d2cea   2 weeks ago   25.1MB

 
  


  
bl  br