view all stopped docker container code example
Example 1: docker list containers
# List history of containers
$ docker ps -a
Example 2: list stopped containers
docker ps --filter "status=exited"
# List history of containers
$ docker ps -a
docker ps --filter "status=exited"