tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Container Management > Docker > How to find all running and exited Containers

How to find all running and exited 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 and exited Containers.

01C:\>docker ps --help
02 
03Usage:  docker ps [OPTIONS]
04 
05List containers
06 
07Options:
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
12                        states) (default -1)
13  -l, --latest          Show the latest created container (includes all
14                        states)
15      --no-trunc        Don't truncate output
16  -q, --quiet           Only display container IDs
17  -s, --size            Display total file sizes
18 
19C:\>docker ps -a
20CONTAINER ID   IMAGE             COMMAND                  CREATED          STATUS                      PORTS                                              NAMES
219657235ce264   bash              "docker-entrypoint.s..."   24 minutes ago   Exited (0) 23 minutes ago                                                      goofy_volhard
2239c0e6518aa2   bash              "docker-entrypoint.s..."   24 minutes ago   Exited (0) 24 minutes ago                                                      elegant_carson
23ea3ee8f5f033   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

 
  


  
bl  br