Skip to content

Instantly share code, notes, and snippets.

@rpherrera
Created April 19, 2017 18:39
Show Gist options
  • Save rpherrera/32f7ebaab2572de9617b0e57a727feca to your computer and use it in GitHub Desktop.
Save rpherrera/32f7ebaab2572de9617b0e57a727feca to your computer and use it in GitHub Desktop.
remove all docker images
#!/bin/bash
docker images -a | awk '{print $3}' | grep -v IMAGE | uniq | xargs docker rmi -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment