Skip to content

Instantly share code, notes, and snippets.

@joshwiens
Last active November 16, 2016 23:32
Show Gist options
  • Save joshwiens/c98b1ed5aadfbf8e2a9351862cc99920 to your computer and use it in GitHub Desktop.
Save joshwiens/c98b1ed5aadfbf8e2a9351862cc99920 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Stop all running containers
docker stop $(docker ps -a -q)
# Delete all containers
docker rm $(docker ps -a -q)
# Delete all images
docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment