Skip to content

Instantly share code, notes, and snippets.

@lauborges
Created February 13, 2015 16:33
Show Gist options
  • Select an option

  • Save lauborges/acebb10af875b715f76b to your computer and use it in GitHub Desktop.

Select an option

Save lauborges/acebb10af875b715f76b to your computer and use it in GitHub Desktop.
docker remove 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