Skip to content

Instantly share code, notes, and snippets.

@petruisfan
Last active December 21, 2015 16:06
Show Gist options
  • Save petruisfan/1c13256ee7821f8e4b04 to your computer and use it in GitHub Desktop.
Save petruisfan/1c13256ee7821f8e4b04 to your computer and use it in GitHub Desktop.
Cleanup docker containers and <none> images.
#!/bin/bash
docker rm -v $(docker ps -aq)
docker rmi $(docker images | grep "<none>" | tr -s " " | cut -f 3 -d " ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment