Skip to content

Instantly share code, notes, and snippets.

@hodzanassredin
Created May 12, 2014 08:54
Show Gist options
  • Save hodzanassredin/e135b952d6e949f91b37 to your computer and use it in GitHub Desktop.
Save hodzanassredin/e135b952d6e949f91b37 to your computer and use it in GitHub Desktop.
clean unused docker images wen recieving Error: create: no space left on device
docker images | grep '<none>' | awk '{print $3}' | xargs docker rmi
@knownasilya
Copy link

Thank you for this great answer!

@knownasilya
Copy link

Also, I think it's $2 with docker 1.2.0 +

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment