Last active
April 29, 2019 13:21
-
-
Save aherve/fc304eec703baf90dd8589f4c57517a7 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
# Nuke every container, images and volumes and claim your disk space back. | |
docker ps -aq | xargs docker stop ; \ | |
docker ps -aq | xargs docker rm -f; \ | |
docker images -aq | xargs docker rmi -f; \ | |
docker volume ls | xargs docker volume rm -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment