Forrest logo
back to the docker tool

docker:tldr:08cc4

docker: Display statistics for all containers (both running and stopped).
$ docker stats --all
try on your machine

The command "docker stats --all" is used to display real-time statistics of the containers running on a Docker host. Here is the explanation of each part of the command:

  • "docker": It refers to the Docker command-line interface (CLI), which executes commands to interact with Docker.
  • "stats": It is a Docker command that provides container resource usage statistics such as CPU usage, memory usage, network I/O, and block I/O.
  • "--all" or "-a": It is an optional flag that can be added to the "docker stats" command. When this flag is used, statistics for all containers, both running and stopped, are displayed. By default, only the statistics for running containers are shown.

In summary, the "docker stats --all" command is used to view real-time statistics of all containers (running and stopped) on a Docker host, including information about their resource usage.

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