Skip to content

Instantly share code, notes, and snippets.

@jebrial
Created October 23, 2017 16:15
Show Gist options
  • Save jebrial/96dcc476530974f3b0ff260f90debcd4 to your computer and use it in GitHub Desktop.
Save jebrial/96dcc476530974f3b0ff260f90debcd4 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Delete all containers
docker rm $(docker ps -a -q) -f
# Delete all images
docker rmi $(docker images -q) -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment