Skip to content

Instantly share code, notes, and snippets.

@falcorocks
falcorocks / docker-destroy-all.sh
Last active September 19, 2017 15:09 — forked from JeffBelback/docker-destroy-all.sh
Destroy all Docker Containers and Images
#!/bin/bash
# Stop all containers
docker stop $(docker ps -a -q)
# Delete all containers
docker rm -f $(docker ps -a -q)
# Delete all images
docker rmi -f $(docker images -q)