Skip to content

Instantly share code, notes, and snippets.

@mikebobadilla
Created December 21, 2018 03:57
Show Gist options
  • Save mikebobadilla/fac6770fd5d33cd84c6d62e925e623e4 to your computer and use it in GitHub Desktop.
Save mikebobadilla/fac6770fd5d33cd84c6d62e925e623e4 to your computer and use it in GitHub Desktop.
Delete all stopped containers
docker ps -a | awk 'FNR > 1 {print $1}' | xargs docker rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment