Last active
July 25, 2017 18:09
-
-
Save adimircolen/f3a27f36bf1a1024a00074d1e7b250be to your computer and use it in GitHub Desktop.
Remove All Docker images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
docker rmi -f `docker images | awk '{ print $3; }'` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment