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

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -