Skip to content

Instantly share code, notes, and snippets.

@ilbonzo
Created July 28, 2017 06:58
Show Gist options
  • Save ilbonzo/ecb4be34ae5308db9cb7025c3a961d21 to your computer and use it in GitHub Desktop.
Save ilbonzo/ecb4be34ae5308db9cb7025c3a961d21 to your computer and use it in GitHub Desktop.
remove all docker images/containers
docker rm $(docker ps -a -q)
docker rmi $(docker images -q)
docker volume rm $(docker volume ls |awk '{print $2}')
rm -rf ~/Library/Containers/com.docker.docker/Data/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment