Forrest logo
back to the docker tool

docker:tldr:c7eb5

docker: List all Docker images including intermediates.
$ docker images --all
try on your machine

The command "docker images --all" is used to list all the available Docker images. Here is an explanation of each part of the command:

  • "docker": This is the command-line interface for managing Docker containers and images.
  • "images": This is the command used to list Docker images.
  • "--all": This is an optional flag that instructs Docker to display all images, including intermediate image layers that are not tagged explicitly. By default, Docker only shows the top-level images, ignoring the intermediate ones which can be useful for troubleshooting or cleaning up unused images.

By running this command, you will get a list of all Docker images along with their details such as repository, tag, image ID, creation date, and size.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the docker tool