Created
April 29, 2021 14:40
-
-
Save thomasstep/73456f1ff4836e5af8d8dea8384877bc to your computer and use it in GitHub Desktop.
Force A Full Clean Docker
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 rm $(docker ps -aq) | |
docker rmi --force $(docker images -q) | |
docker system prune --volumes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment