Last Updated: January 28, 2019
·
160
· qbraksa

Remove all docker containers

We all love docker containers, but at some point in time, you create too much of em, and you just wanna start fresh and remove em all! Well now you can in 2 commands :

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)