how to list all the containers running in a docker code example
Example 1: docker check running containers
docker ps -a
Example 2: list stopped containers
docker ps --filter "status=exited"
Example 3: docker list containers
# List curently active containers
$ docker ps