Skip to content

Instantly share code, notes, and snippets.

@colinsurprenant
Created February 25, 2014 20:21
Show Gist options
  • Save colinsurprenant/9216905 to your computer and use it in GitHub Desktop.
Save colinsurprenant/9216905 to your computer and use it in GitHub Desktop.
clean docker repositoty
# remove stopped containers
docker rm $(docker ps -a -q)
# remove untagged images
docker rmi $(docker images | grep "^<none>" | awk "{print $3}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment