Skip to content

Instantly share code, notes, and snippets.

@nielsvanderbeke
Created May 26, 2015 07:49
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 nielsvanderbeke/7d7efd109bc053688e2e to your computer and use it in GitHub Desktop.
Save nielsvanderbeke/7d7efd109bc053688e2e to your computer and use it in GitHub Desktop.
docker cleanup
Kill all running containers
docker kill $(docker ps -q)
Delete all stopped containers (including data-only containers)
docker rm $(docker ps -a -q)
Delete all ‘untagged/dangling’ (<none>) images
docker rmi $(docker images -q -f dangling=true)
Delete ALL images
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment