Skip to content

Instantly share code, notes, and snippets.

@dorianim
Created February 1, 2022 14:33
Show Gist options
  • Save dorianim/d88d0d338f54481fa1e7246ed8e9165a to your computer and use it in GitHub Desktop.
Save dorianim/d88d0d338f54481fa1e7246ed8e9165a to your computer and use it in GitHub Desktop.
Remove all docker containers
for i in $(docker ps -a | cut -f 1 -d ' ' | xargs); do docker rm $i; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment