Docker: How to See All Pulled Images
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:
- Installing Docker on Ubuntu 21.04, 21.10, and 20.04
- How to Check Docker Desktop and Docker Engine Versions
- Using Docker Compose to speed up WordPress development
- Limit resources consumed by Docker Desktop
- Using Docker Compose 3 with Node.js and MongoDB
You can also check out our Docker topic page for the latest tutorials, examples, tips, and tricks.
Subscribe
0 Comments