Skip to content

Instantly share code, notes, and snippets.

@soardex
Created June 21, 2015 13:39
Show Gist options
  • Save soardex/4f05bac49506e7144f46 to your computer and use it in GitHub Desktop.
Save soardex/4f05bac49506e7144f46 to your computer and use it in GitHub Desktop.
Remove Unfinished Docker Images Pull
# removes unfinished pulled images in docker
docker rmi -f $(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