docker将本地打包好的镜像推到远程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker将本地打包好的镜像推到远程相关的知识,希望对你有一定的参考价值。

参考技术A docker login 仓库ip/xxx.com

如 docker login 你的私有仓库IP/或网址  输入用户名密码登录

格式一 :docker tag 本地tag  IP/网址/项目目录/仓库:标签

格式二:docker tag 本地镜像仓库:本地镜像标签 远程仓库名:远程镜像标签

docker tag 584db3f95d82 IP或网址/library/centos/demo:test

登录可直接用:docker push 远程仓库名:远程镜像标签

docker push IP或网址/library/centos/demo:test

删除本地所有镜像(在本地测试没有其他镜像,有的话单独删除)

docker rmi $(docker images -aq)

远程拉取

docker pull IP或网址/library/centos/demo:test

构建本地镜像

docker build -f Dockerfile_arm -t vdi-controller:arm0324 .

本地镜像打标签

docker tag vdi-controller:arm0324 178.104.162.39/dev/vdi-controller:arm0324

将本地镜像推到远程仓库

docker push 178.104.162.39/dev/vdi-controller:arm0324

远程仓库拉取

docker pull 178.104.162.39/dev/vdi-controller:arm0324

参考:

https://blog.csdn.net/ys_230014/article/details/82871435

以上是关于docker将本地打包好的镜像推到远程的主要内容,如果未能解决你的问题,请参考以下文章

阿里云搭建docker私有镜像仓库与SpringBoot项目推送远程镜像仓库

零基础用Docker部署微服务

Docker入门教程:本地打包docker镜像

源码时代Java干货分享|手把手教你用maven构建docker镜像

Python项目打包为docker镜像并迁移

php7 安装yar 生成docker镜像