其他分享
首页 > 其他分享> > docker tar.gz

docker tar.gz

作者:互联网

tar -cf - $DIR | pigz > $HOME/repo_archive_$(date +"%Y%m%d").tar.gz
pigz -dc repo_archive_$(date +"%Y%m%d").tar.gz | tar -x 
docker save <image>:<tag> | pigz > <image>.tar.gz
docker save <image>:<tag> | zstd > <image>.tar.zst
pigz -dc <image>.tar.gz | docker load
zstd -dc <image>.tar.zst | docker load

 

标签:m%,tar,gz,dc,pigz,docker
来源: https://www.cnblogs.com/yzpopulation/p/15865936.html