Skip to content

Instantly share code, notes, and snippets.

@vsudilov
Created June 30, 2014 15:22
Show Gist options
  • Save vsudilov/7bad2364c961262c72f6 to your computer and use it in GitHub Desktop.
Save vsudilov/7bad2364c961262c72f6 to your computer and use it in GitHub Desktop.
Docker cleanup containers+images
docker rm $(docker ps -a -q)
docker rmi $(docker images | awk '/^<none>/ {print $3}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment