Skip to content

Instantly share code, notes, and snippets.

@tristola
Last active August 29, 2015 14:06
Show Gist options
  • Save tristola/2909b6c698a1ecc0b9d0 to your computer and use it in GitHub Desktop.
Save tristola/2909b6c698a1ecc0b9d0 to your computer and use it in GitHub Desktop.
remove docker containers and images
Remove all containers
docker rm $(docker ps -a -q)
Remove all images
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment