Skip to content

Instantly share code, notes, and snippets.

@gabhi
Created September 2, 2015 22:58
Show Gist options
  • Save gabhi/f449e87fa19902354531 to your computer and use it in GitHub Desktop.
Save gabhi/f449e87fa19902354531 to your computer and use it in GitHub Desktop.
clean docker all 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