list all stopped containers docker code example
Example 1: how to get list of docker containers
1. docker container ls -a
2. docker ps -a
Example 2: docker list containers
# List history of containers
$ docker ps -a
Example 3: list stopped containers
docker ps --filter "status=exited"
Example 4: docker display stopped containers
#display all containers
docker ps -a