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
Post a Comment