Skip to content

Instantly share code, notes, and snippets.

@fabianfett
Last active October 28, 2016 15:56
Show Gist options
  • Save fabianfett/fb9ceeaa2663ef62f4a6cf701e3acb81 to your computer and use it in GitHub Desktop.
Save fabianfett/fb9ceeaa2663ef62f4a6cf701e3acb81 to your computer and use it in GitHub Desktop.
Delete All Docker Containers

Delete all Containers

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)

Delete all Images

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