Skip to content

Instantly share code, notes, and snippets.

@mimikadze
Created September 30, 2016 10:58
Show Gist options
  • Save mimikadze/38fe425151c017ea464d6c3da6ba7106 to your computer and use it in GitHub Desktop.
Save mimikadze/38fe425151c017ea464d6c3da6ba7106 to your computer and use it in GitHub Desktop.
Clean the system from all unnamed Docker images
docker rm $(docker ps -a | grep Exited | awk '{print $1}')
docker rmi $(docker images -f "dangling=true" -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment