Skip to content

Instantly share code, notes, and snippets.

View aclare92's full-sized avatar

Antony Clare aclare92

  • OrderWise
  • Lincoln, Lincolnshire, United Kingdom
View GitHub Profile
@aclare92
aclare92 / remove-all-from-docker.sh
Created March 15, 2024 21: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