docker一些命令

teiperfly發表於2024-06-01
命令 說明
docker rmi -f `docker images -q -f dangling=true`
刪除dangling狀態的映象
docker image prune --all -f
清除dangling和不再使用的映象
docker save nginx:latest |gzip > nginx.tar.gz 壓縮儲存映象

docker save `docker images | awk 'NR>1 {print $1":"$2}'` -o all.tar

docker save `docker image ls --format "{{.Repository}}:{{.Tag}}"` -o all.tar

儲存所有映象
docker save `docker images | awk 'NR>1 {print $1":"$2}'` |gzip > all.tar.gz 儲存所有映象並壓縮
docker rmi -f `docker images -q -f dangling=true`