Skip to content

Instantly share code, notes, and snippets.

@ksoichiro
Last active August 29, 2015 14:00
Show Gist options
  • Save ksoichiro/cb07175d1ac5dfdaf237 to your computer and use it in GitHub Desktop.
Save ksoichiro/cb07175d1ac5dfdaf237 to your computer and use it in GitHub Desktop.
Docker cheetsheet

Remove unnamed images:

docker rmi $(docker images | grep "<none>" | awk '{ print $3 }')

Remove stopped containers:

docker rm $(docker ps -a -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment