Created
July 10, 2019 10:14
-
-
Save fxn/72f5612c2768f5758bb93ec4ffde8c6a to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| docker container ls -a -q | xargs docker container rm | |
| docker image ls -a -q | xargs docker image rm | |
| docker volume ls -q | xargs docker volume rm | |
| docker network ls -q --filter type=custom | xargs docker network rm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment