Docker: List Running Containers - ShellHacks
www.shellhacks.com › docker-list-running-containersNov 03, 2017 · Below you will find how to check running Docker containers, how to list stopped Docker containers and how to list all Docker containers. Cool Tip: Clean up a Docker host by removing unused Docker containers! Read More → List Running Docker Containers. To list running Docker containers, execute the following command: $ docker ps List Stopped Docker Containers. To show only stopped Docker containers, run: $ docker ps --filter "status=exited" – or – $ docker ps -f "status=exited"