Skip to content

Instantly share code, notes, and snippets.

View theCowBoiCoder's full-sized avatar
🏅
Carrying On!

Hayden Sweet theCowBoiCoder

🏅
Carrying On!
  • Focus Agency Group
  • Essex
  • 16:47 (UTC)
View GitHub Profile
@theCowBoiCoder
theCowBoiCoder / remove-all-from-docker.sh
Created September 25, 2020 10:12 — forked from beeman/remove-all-from-docker.sh
Remove all from Docker
# Stop all containers
docker stop `docker ps -qa`
# Remove all containers
docker rm `docker ps -qa`
# Remove all images
docker rmi -f `docker images -qa `
# Remove all volumes