DEV Community

Cover image for Remove all exited containers
Adam K Dean
Adam K Dean

Posted on

Remove all exited containers

This removes all exited containers.

docker ps -a | grep 'Exited' | awk '{print $1}' | xargs --no-run-if-empty docker rm
Enter fullscreen mode Exit fullscreen mode

Use with care as it will also removed Data Volume Containers.

Top comments (0)