Created
December 21, 2018 03:57
-
-
Save mikebobadilla/fac6770fd5d33cd84c6d62e925e623e4 to your computer and use it in GitHub Desktop.
Delete all stopped containers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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