Skip to content

Instantly share code, notes, and snippets.

@viebig
Created March 23, 2016 22:53
Show Gist options
  • Save viebig/bdc0bc2fbd59a10128ed to your computer and use it in GitHub Desktop.
Save viebig/bdc0bc2fbd59a10128ed to your computer and use it in GitHub Desktop.
Docker remove all images and containers
# Delete all containers
docker rm $(docker ps -a -q)
# Delete 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