Created
March 9, 2018 06:57
-
-
Save GnsP/81f6ef9e592117d8f2b5d98cf64e5c99 to your computer and use it in GitHub Desktop.
Clean docker space for mac osx
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
#!/bin/bash | |
# remove exited containers: | |
docker ps --filter status=dead --filter status=exited -aq | xargs docker rm -v | |
# remove unused images: | |
docker images --no-trunc | grep '<none>' | awk '{ print $3 }' | xargs docker rmi | |
# remove unused volumes: | |
docker volume ls -qf dangling=true | xargs docker volume rm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment