Skip to content

Instantly share code, notes, and snippets.

@maciekgrzybek
Last active August 20, 2019 09:44
Show Gist options
  • Save maciekgrzybek/e171368524963b1b73e956e1063129d2 to your computer and use it in GitHub Desktop.
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'
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