Last active
April 8, 2019 15:15
-
-
Save gyfoster/a681af5a5102378bda887d8c44e8fb1f to your computer and use it in GitHub Desktop.
Deletes all local Docker containers and images
This file contains 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
# stop all containers | |
docker stop $(docker ps -a -q) | |
# delete stopped containers | |
docker rm $(docker ps -a -q) | |
# delete all images | |
docker rmi -f $(docker images -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment