Merge pull request #85 from MoeLove/add-docker-volume-and-network-prune

Add docker volume prune and docker network prune
This commit is contained in:
Julien Le Coupanec 2019-07-21 12:49:04 +02:00 committed by GitHub
commit b5923b7b59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,8 @@ docker push username/repository:tag # Upload tagged image to registry
docker run username/repository:tag # Run image from a registry
docker system prune # Remove all unused containers, networks, images (both dangling and unreferenced), and optionally, volumes. (Docker 17.06.1-ce and superior)
docker system prune -a # Remove all unused containers, networks, images not just dangling ones (Docker 17.06.1-ce and superior)
docker volume prune # Remove all unused local volumes
docker network prune # Remove all unused networks
##############################################################################