Menu

How to list stopped docker containers?

If we want to see, which docker containers are stopped or we need to find ID of container, which we want to start, we could do that:

docker ps --filter "status=exited"

 

or

docker ps -f "status=exited"

 

Leave a Reply

Your email address will not be published. Required fields are marked *