Skip to content

Instantly share code, notes, and snippets.

@sidneyspe
Created February 18, 2021 23:38
Show Gist options
  • Select an option

  • Save sidneyspe/e5f159b7ac9435d0188bd91ffb0ea178 to your computer and use it in GitHub Desktop.

Select an option

Save sidneyspe/e5f159b7ac9435d0188bd91ffb0ea178 to your computer and use it in GitHub Desktop.

Docker Stop All

docker ps -a -q | xargs -n 1 -P 8 -I {} docker stop {}

Docker Remove All

docker ps -a -q | xargs -n 1 -P 8 -I {} docker rm {}

Docker System Prune

docker system prune -a && docker system prune -a --volumes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment