Skip to content

Instantly share code, notes, and snippets.

@hayzem
Created April 17, 2017 10:54
Show Gist options
  • Save hayzem/415113597c3708af6cf3eb56de666ee4 to your computer and use it in GitHub Desktop.
Save hayzem/415113597c3708af6cf3eb56de666ee4 to your computer and use it in GitHub Desktop.
Docker remove all container and images!
#!/bin/bash
# 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