Skip to content

Instantly share code, notes, and snippets.

@filhocodes
Created June 18, 2017 14:52
Show Gist options
  • Save filhocodes/197cd6c61a92473e00e1130662280cee to your computer and use it in GitHub Desktop.
Save filhocodes/197cd6c61a92473e00e1130662280cee to your computer and use it in GitHub Desktop.
Docker Cleanup
docker stop $(docker ps -q);
docker rm $(docker ps -a -q);
docker rmi $(docker images -q);
docker volume rm $(docker volume ls -q);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment