Skip to content

Instantly share code, notes, and snippets.

@arastu
Created August 11, 2018 14:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arastu/a6396847b05e0bd833cd5c271e509c1b to your computer and use it in GitHub Desktop.
Save arastu/a6396847b05e0bd833cd5c271e509c1b to your computer and use it in GitHub Desktop.
delete all docker resource
#!/usr/bin/env bash
docker ps -a -q | xargs docker rm -f
docker images -a -q | xargs docker rmi -f
docker volume ls -q | xargs docker volume rm -f
docker network ls | xargs docker network rm
docker system prune -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment