Docker list only stopped containers -


docker gives way of listing running containers or containers including stopped ones. can done

docker ps \ docker ps -a 

do have way of listing container have been stopped.

only stopped containers can listed using:

docker ps --filter "status=exited" 

or

docker ps -f "status=exited" 

Comments

Popular posts from this blog

javascript - Complete OpenIDConnect auth when requesting via Ajax -

c# - Replace text in MailItem Body -

java - Get more than One value and display it -