Skip to content

Instantly share code, notes, and snippets.

@kragniz
Created October 31, 2016 17:30
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 kragniz/ec8320f6f99e7bad484650991d63fbaf to your computer and use it in GitHub Desktop.
Save kragniz/ec8320f6f99e7bad484650991d63fbaf to your computer and use it in GitHub Desktop.
Remove all docker images from a machine
#!/bin/bash
docker ps --all | tail -n +2 | cut -d' ' -f1 | xargs docker rm -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment