Skip to content

Instantly share code, notes, and snippets.

@xman1980
Forked from stanislavb/docker-cleanup.sh
Created August 26, 2019 18:23
Show Gist options
  • Save xman1980/0ee074812d2d2b671e35584b45412cb9 to your computer and use it in GitHub Desktop.
Save xman1980/0ee074812d2d2b671e35584b45412cb9 to your computer and use it in GitHub Desktop.
Docker clean-up script for cron
#!/bin/bash
# Do not run if removal already in progress.
pgrep "docker rm" && exit 0
# Remove Dead and Exited containers.
docker rm $(docker ps -a | grep "Dead\|Exited" | awk '{print $1}'); true
# It will fail to remove images currently in use.
docker rmi $(docker images -qf dangling=true); true
# Clean up unused docker volumes
docker volume rm $(docker volume ls -qf dangling=true); true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment