Skip to content

Instantly share code, notes, and snippets.

@huawww
Created November 25, 2017 22:05
Show Gist options
  • Save huawww/9ad49231230171adce346053f6321e10 to your computer and use it in GitHub Desktop.
Save huawww/9ad49231230171adce346053f6321e10 to your computer and use it in GitHub Desktop.
#!/bin/bash
# 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