Skip to content

Instantly share code, notes, and snippets.

@nicubarbaros
Last active June 2, 2017 14:17
Show Gist options
  • Save nicubarbaros/9a609d2f92319b03200a4396a695fda1 to your computer and use it in GitHub Desktop.
Save nicubarbaros/9a609d2f92319b03200a4396a695fda1 to your computer and use it in GitHub Desktop.
One liner to stop / remove all of Docker containers & images:
# Stop all containers
docker stop $(docker ps -a -q)
# 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