Docker ps: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 29: Line 29:
==-s==
==-s==


Display file sizes.
Provide size and virtual size information for a container.
 
The size represents the amount of data, on disk, that is used for [[Docker_Concepts#Difference_Between_Containers_and_Images_-_a_Writable_Layer|the writable layer]] of the container.

Revision as of 04:58, 5 December 2017

External

Internal

Overview

List running containers. The output contains:

  • the container ID and name(s)
  • the image the container was created from
  • the command
  • the container's status
  • when long ago was created
  • what ports it uses

Options

-a, --all

Lists all containers (stopped and running).

-q, --quiet

Only display the numeric container IDs.

-s

Provide size and virtual size information for a container.

The size represents the amount of data, on disk, that is used for the writable layer of the container.