Skip to content

Instantly share code, notes, and snippets.

@juanem1
Created February 22, 2017 16:47
Show Gist options
  • Save juanem1/3a5dea7cc4a8ac4d49fe140a707697ab to your computer and use it in GitHub Desktop.
Save juanem1/3a5dea7cc4a8ac4d49fe140a707697ab to your computer and use it in GitHub Desktop.
Remove all images and containers from docker
#!/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