Skip to content

Instantly share code, notes, and snippets.

@venkatperi
Created December 2, 2014 15:35
Show Gist options
  • Save venkatperi/e7e5e9834afdb79077cb to your computer and use it in GitHub Desktop.
Save venkatperi/e7e5e9834afdb79077cb to your computer and use it in GitHub Desktop.
docker stuff
#remove stopped containers
docker ps -a|grep Exited|cut -d' ' -f1|xargs docker rm $1
#remove untagged images
docker images|grep none|awk '{print $3}'|xargs docker rmi $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment