名稱(chēng),簡(jiǎn)寫(xiě) | 說(shuō)明 |
--filter | 提供過(guò)濾值。 |
--force , -f | 不提示確認(rèn)信息,直接刪除。 |
要使用此命令,客戶(hù)端和守護(hù)程序API版本都必須至少為1.21。在客戶(hù)端上使用docker version命令可以檢查客戶(hù)端和守護(hù)程序API版本。
docker volume rm [OPTIONS] VOLUME [VOLUME...]
刪除一個(gè)或多個(gè)卷。從1.25版本起,支持一個(gè)選項(xiàng)--force , -f,強(qiáng)制刪除一個(gè)或多個(gè)卷。
補(bǔ)充:docker 移除,裁剪,刪除(prune)不使用的鏡像、容器、卷、網(wǎng)絡(luò)
參考docker prune
提供 prune命令,用于移除不使用的鏡像、容器、卷、網(wǎng)絡(luò)。
docker image prune移除沒(méi)有標(biāo)簽并且沒(méi)有被容器引用的鏡像,這種鏡像稱(chēng)為 dangling(搖晃的) 鏡像。
刪除了redis,無(wú)標(biāo)簽且無(wú)引用
#docker ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES # docker images REPOSITORY TAG IMAGE ID CREATED SIZE nginx latest ae2feff98a0c 4 days ago 133MB redis <none> ef47f3b6dc11 8 days ago 104MB centos latest 300e315adb2f 12 days ago 209MB ubuntu latest f643c72bc252 3 weeks ago 72.9MB docs/docker.github.io latest 32ed84d97e30 6 months ago 1GB # docker image prune # docker images REPOSITORY TAG IMAGE ID CREATED SIZE nginx latest ae2feff98a0c 4 days ago 133MB centos latest 300e315adb2f 12 days ago 209MB ubuntu latest f643c72bc252 3 weeks ago 72.9MB docs/docker.github.io latest 32ed84d97e30 6 months ago 1GB
docker image prune -a
跳過(guò)警告提示:--force或-f
docker image prune -f
超過(guò)24小時(shí)創(chuàng)建的鏡像
docker image prune -a --filter "until=24h"
關(guān)于過(guò)濾器的內(nèi)容,查看 docker image prune手冊(cè)
當(dāng)停止容器,不會(huì)自動(dòng)刪除,除非在 docker run 時(shí)指定了 --rm。一個(gè)停止的容器可寫(xiě)層仍然會(huì)占用磁盤(pán)空間,所以清除它,使用 docker container prune命令。
其他參數(shù)類(lèi)似 docker images prune
卷會(huì)被一個(gè)或多個(gè)容器使用,并且占用主機(jī)空間。卷不會(huì)自動(dòng)移除,因?yàn)樽詣?dòng)移除,會(huì)破壞數(shù)據(jù)。
docker volume prune
其他參數(shù)類(lèi)似 docker images prune
Docker 網(wǎng)絡(luò)不會(huì)占用磁盤(pán)空間,但是他們創(chuàng)建了 iptables規(guī)則,橋接網(wǎng)絡(luò)服務(wù),路由entries。清除未被容器使用的網(wǎng)絡(luò),這么做
docker network prune
其他參數(shù)類(lèi)似 docker images prune
docker system prune 命令是一個(gè)快捷方式,用于移除鏡像,容器,網(wǎng)絡(luò)。
在 Docker 17.06.0 和更早,卷也是可以移除的。在Docker 17.06.1或更高版本,需要指定參數(shù)--volumes。
# docker system prune WARNING! This will remove: - all stopped containers - all networks not used by at least one container - all dangling images - all build cache Are you sure you want to continue? [y/N] y
# docker system prune --volumes WARNING! This will remove: - all stopped containers - all networks not used by at least one container - all volumes not used by at least one container - all dangling images - all build cache Are you sure you want to continue? [y/N] y
其他參數(shù)類(lèi)似 docker images prune
以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。
標(biāo)簽:連云港 運(yùn)城 遵義 隴南 荊門(mén) 面試通知 雞西 朝陽(yáng)
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《docker volume刪除卷的操作》,本文關(guān)鍵詞 docker,volume,刪除,卷,的,操作,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。