Skip to content

Instantly share code, notes, and snippets.

@theqwan-chengwei
Forked from mlebkowski/cleanup-docker.sh
Last active May 3, 2017 04:27
Show Gist options
  • Save theqwan-chengwei/25753cf10ec0387344aa671802f7ced7 to your computer and use it in GitHub Desktop.
Save theqwan-chengwei/25753cf10ec0387344aa671802f7ced7 to your computer and use it in GitHub Desktop.
Cleanup docker disk space https://lebkowski.name/docker-volumes/
#!/bin/bash
# remove exited containers:
docker ps --filter status=dead --filter status=exited -aq | xargs -r docker rm -v
# remove unused images:
docker images --no-trunc | grep '<none>' | awk '{ print $3 }' | xargs -r docker rmi
# remove unused volumes:
# find '/var/lib/docker/volumes/' -mindepth 1 -maxdepth 1 -type d | grep -vFf <(
# docker ps -aq | xargs docker inspect | jq -r '.[] | .Mounts | .[] | .Name | select(.)'
# ) | xargs -r rm -fr
docker volume ls -qf dangling=true | xargs -r docker volume rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment