Skip to content

Instantly share code, notes, and snippets.

@gcamerli
Created July 9, 2018 20:31
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gcamerli/9afd31a2d61884208c19e770c7973fb5 to your computer and use it in GitHub Desktop.
Save gcamerli/9afd31a2d61884208c19e770c7973fb5 to your computer and use it in GitHub Desktop.
Shell script to clean the space burnt by docker.
#!/bin/sh
# Clean containers
docker container prune -f
# Clean images
docker image prune -f
# Clean networks
docker network prune -f
# Clean volumes
docker volume prune -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment