Skip to content

Instantly share code, notes, and snippets.

@kgalli
Created January 15, 2016 13:09
Show Gist options
  • Save kgalli/b4670913498b02901ad7 to your computer and use it in GitHub Desktop.
Save kgalli/b4670913498b02901ad7 to your computer and use it in GitHub Desktop.
Docker cleanup
#!/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