1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-05-28 18:30:48 +00:00

Add docker volume prune and docker network prune

Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
This commit is contained in:
Jintao Zhang 2019-07-21 07:55:07 +08:00
parent 7536d71c8d
commit dd8dbbfe48

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 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 # 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 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
############################################################################## ##############################################################################