Skip to content

Instantly share code, notes, and snippets.

@rindevich
Created January 30, 2018 13:00
Show Gist options
  • Save rindevich/e8c9baba6c3a789ddf872203423dc85b to your computer and use it in GitHub Desktop.
Save rindevich/e8c9baba6c3a789ddf872203423dc85b to your computer and use it in GitHub Desktop.
Clean docker
#!/bin/bash
# remove exited containers:
docker ps --filter status=dead --filter status=exited -aq | xargs -r docker rm -v
# remove unused containers:
yes | docker container prune
# remove unused images:
yes | docker image prune
# remove unused volumes:
yes | docker volume prune
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment