Skip to content

Instantly share code, notes, and snippets.

@sylwit
Created October 15, 2015 21:48
Show Gist options
  • Save sylwit/d99478d920ee5d0f8dd3 to your computer and use it in GitHub Desktop.
Save sylwit/d99478d920ee5d0f8dd3 to your computer and use it in GitHub Desktop.
clean docker images and containers
function docker.clean_containers() {
docker rm $(docker ps -a | grep -v Up | grep -v CONTAINER | cut -f 1 -d ' ')
}
function docker.clean_images() {
docker rmi $(docker images | grep none | tr -s ' ' | cut -f 3 -d ' ')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment