Skip to content

Instantly share code, notes, and snippets.

@assafmo
Last active March 18, 2020 12:50
Show Gist options
  • Save assafmo/8527098db480ceb822211b64abbb84b1 to your computer and use it in GitHub Desktop.
Save assafmo/8527098db480ceb822211b64abbb84b1 to your computer and use it in GitHub Desktop.
Purge docker containers and images
#!/bin/bash
docker ps -a |
tail -n +2 |
awk '{print $1}' |
xargs -r docker rm -f
docker images |
tail -n +2 |
awk '{print $3}' |
xargs -r docker rmi -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment