Skip to content

Instantly share code, notes, and snippets.

@StuMason
Last active August 3, 2018 12:09
Show Gist options
  • Save StuMason/5f27d69eb03ae99579dcef45e0930532 to your computer and use it in GitHub Desktop.
Save StuMason/5f27d69eb03ae99579dcef45e0930532 to your computer and use it in GitHub Desktop.
#!/bin/bash
# remove exited containers:
docker ps --filter status=dead --filter status=exited -aq | xargs docker rm -v
# remove unused images:
docker images --no-trunc | grep '<none>' | awk '{ print $3 }' | xargs docker rmi
# remove unused volumes:
docker volume ls -qf dangling=true | xargs docker volume rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment