Skip to content

Instantly share code, notes, and snippets.

@kohsuke
Created June 1, 2017 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kohsuke/6801d72b269a446a2bc36a7d9869e35f to your computer and use it in GitHub Desktop.
Save kohsuke/6801d72b269a446a2bc36a7d9869e35f to your computer and use it in GitHub Desktop.
#!/bin/bash
# delete files occupied by the finished containers
sudo docker rm $(sudo docker ps -a | grep Exit| cut -f1 -d' ')
# delete dangling images
sudo docker rmi $(sudo docker images -f "dangling=true" -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment