Last active
August 20, 2019 09:44
-
-
Save maciekgrzybek/e171368524963b1b73e956e1063129d2 to your computer and use it in GitHub Desktop.
Removes exited docker images, to clean up some space - fix the 'No space left on device error'
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
docker rm $(docker ps -q -f 'status=exited') // OR | |
docker rmi $(docker images -q -f "dangling=true") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment