Skip to content

Instantly share code, notes, and snippets.

@uxter
Last active October 6, 2018 21:55
Show Gist options
  • Save uxter/6ce80b1a1519411b4c44d66c9a31e807 to your computer and use it in GitHub Desktop.
Save uxter/6ce80b1a1519411b4c44d66c9a31e807 to your computer and use it in GitHub Desktop.
Remove all Docker Containers and Images
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -f status=exited -f status=created -q)
docker rmi $(docker images -a -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment