|
How to find all running Containers
Author: Venkata Sudhakar
Docker is an open platform to develop, ship, and run containerized applications.
It separates infra from application to ease application development and support anywhere development strategy. The below example shows how to find all running Containers.
03 | Usage: docker ps [OPTIONS] |
08 | -a, --all Show all containers ( default shows just running) |
09 | -f, --filter filter Filter output based on conditions provided |
10 | --format string Pretty-print containers using a Go template |
11 | -n, --last int Show n last created containers (includes all |
13 | -l, --latest Show the latest created container (includes all |
15 | --no-trunc Don't truncate output |
16 | -q, --quiet Only display container IDs |
17 | -s, --size Display total file sizes |
20 | CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES |
21 | ea3ee8f5f033 jenkins/jenkins "/sbin/tini -- /usr/.." 2 days ago Up 2 days 0.0 . 0.0 : 8080 -> 8080 /tcp, 0.0 . 0.0 : 50000 -> 50000 /tcp nifty_jones |
|
|