Ad space (banner)
AD

Got the fundamentals? A structured Docker course is a fast way to level up.

Find Docker courses on Udemy

Affiliate link. Costs you nothing extra.

🐳Docker Lessons
Lesson 6 / 45

Listing Images with docker images

When you want to see which images you already hold, use docker images. It lists every image on your machine.

The syntax is docker images. It is equivalent to the newer docker image ls.

Running docker images prints a table of REPOSITORY, TAG, IMAGE ID, CREATED and SIZE — so you can see at a glance what you have and how much space it takes.

A common stumble is being surprised at how much disk images consume. They accumulate quietly, and old ones need clearing out from time to time.

In real work, it is the standard check before a build and when freeing up disk space.

Docker
Try it (type this into the pseudo terminal)
docker images

🧑‍💻 You can type this command into the Docker pseudo terminal to try it yourself (this page itself has no interactive terminal).

Ad space (banner)
Ad space (in-article)