Skip to content

Instantly share code, notes, and snippets.

@lauborges
Created March 3, 2015 14:22
Show Gist options
  • Select an option

  • Save lauborges/5c0d1ad38ea80e5f9d6b to your computer and use it in GitHub Desktop.

Select an option

Save lauborges/5c0d1ad38ea80e5f9d6b to your computer and use it in GitHub Desktop.
remove all dockers images
sudo docker ps -a | awk '{print $1}' | grep -v CONTAINER | xargs sudo docker rm
sudo docker images | grep "<none>" | awk '{print $3}' | xargs sudo docker rmi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment