Skip to content

Instantly share code, notes, and snippets.

View rafaelivan's full-sized avatar

Rafael Ivan Garcia rafaelivan

View GitHub Profile
@rafaelivan
rafaelivan / remove-all-from-docker.sh
Last active June 29, 2023 14:37 — 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