Skip to content

Instantly share code, notes, and snippets.

@furusiyya
Last active May 30, 2017 05:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save furusiyya/29c29fe77bec02340b733a474e2374b5 to your computer and use it in GitHub Desktop.
Save furusiyya/29c29fe77bec02340b733a474e2374b5 to your computer and use it in GitHub Desktop.
Remove stopped containers and untagged images created due to unsuccessful builds (Images with Repository: <none> && Tag: <None>)
#!/bin/bash
docker rmi $(docker images | grep "^<none>" | awk "{print $3}");
docker rm $(docker ps -a -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment