Skip to content

Instantly share code, notes, and snippets.

@paulscott56
Created March 30, 2016 09:27
Show Gist options
  • Save paulscott56/bd8b3e7c9a110f3b73fb7b8411ceb01d to your computer and use it in GitHub Desktop.
Save paulscott56/bd8b3e7c9a110f3b73fb7b8411ceb01d to your computer and use it in GitHub Desktop.
#!/bin/bash
# Stop everything
docker stop $(docker images -a -q)
# Delete all containers
docker rm -f $(docker ps -a -q)
# Delete all images
docker rmi -f $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment