Skip to content

Instantly share code, notes, and snippets.

@fvztdk
Created July 13, 2017 13:50
Show Gist options
  • Save fvztdk/536e1ff39b21d6a546b16bb92fc1b589 to your computer and use it in GitHub Desktop.
Save fvztdk/536e1ff39b21d6a546b16bb92fc1b589 to your computer and use it in GitHub Desktop.
Docker cleanup
#!/bin/bash
#v1.1
docker rm -v $(docker ps --filter status=exited -q 2>/dev/null) 2>/dev/null
docker rmi $(docker images --filter dangling=true -q 2>/dev/null) 2>/dev/null
rm -rf /var/lib/docker/tmp/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment