I found myself getting tired of copy and pasting UUID’s to remove containers one by one. I found this little snippet to help speed things up.
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)