Docker: How to See All Pulled Images

Last updated on November 3, 2021 A Goodman Loading... Post a comment

In order to list all images on your Docker host, you can run the following command:

docker image ls

The result you get depends on what images you have pulled before. Here’s mine:

Each image in the list comes with a unique ID and helpful information including size, created time…

You can pull a new image (e.g, node) by performing the command below:

docker pull node

Further reading:

You can also check out our Docker topic page for the latest tutorials, examples, tips, and tricks.

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments

You May Also Like