Skip to content

Instantly share code, notes, and snippets.

@brandonsoto
Last active February 27, 2017 03:53
Show Gist options
  • Save brandonsoto/5d801deedcd4713f0ab57bbd909c3293 to your computer and use it in GitHub Desktop.
Save brandonsoto/5d801deedcd4713f0ab57bbd909c3293 to your computer and use it in GitHub Desktop.
Delete all docker images and containers on the system
#!/bin/bash
# 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