66.8k views
3 votes
What command lists all images installed locally on a system?

a) docker images ls
b) docker image list
c) docker image ls
d) docker list images

User Yvetterowe
by
7.4k points

1 Answer

2 votes

Final answer:

The correct command to list all images installed locally on a system in Docker is 'docker image ls'.

Step-by-step explanation:

The correct command to list all images installed locally on a system in Docker is:

docker image ls

This command displays a table with information about the images, including their repository, tag, image ID, and size. It provides a comprehensive view of the images available on the local system.

User Ellesmera
by
8.4k points