Skip to content

Instantly share code, notes, and snippets.

@haoliangyu
Created January 3, 2017 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haoliangyu/c7c853b98757cf2e21989863a6ea3d7e to your computer and use it in GitHub Desktop.
Save haoliangyu/c7c853b98757cf2e21989863a6ea3d7e to your computer and use it in GitHub Desktop.
Delete all docker containers and images
# From https://github.com/docker/docker/issues/928
docker rm `docker ps -a -q`
docker rmi `docker images -q`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment