Skip to content

Instantly share code, notes, and snippets.

@falcorocks
Forked from JeffBelback/docker-destroy-all.sh
Last active September 19, 2017 15:09
Show Gist options
  • Save falcorocks/4ac72f0ddd149acc99db3d0d4277fff5 to your computer and use it in GitHub Desktop.
Save falcorocks/4ac72f0ddd149acc99db3d0d4277fff5 to your computer and use it in GitHub Desktop.
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)
@falcorocks
Copy link
Author

need to add -f force flag

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment