DockerHub 镜像仓库的使用详解

时间:2021-08-11 06:35:49

之前我们使用的镜像都是从 dockerhub 公共仓库拉取的,我们也学习了如何制作自己的镜像,但是通过 tar 包的方式实现镜像的备份恢复迁移对于团队协作开发并不是特别友好,我们也可以将镜像推送至 dockerhub 仓库方便使用。

温馨提示:如果构建的镜像内携带了项目数据,建议还是使用私有仓库比较好。

注册账号

官网:https://hub.docker.com/

DockerHub 镜像仓库的使用详解

登录账号

通过 docker login 命令输入账号密码登录 dockerhub。

DockerHub 镜像仓库的使用详解

推送镜像至仓库

为了方便测试,我们将 hello-world 镜像拉取至本地,然后再上传至 dockerhub 仓库中。

先给镜像设置标签 docker tag local-image:tagname new-repo:tagname

再将镜像推送至仓库 docker push new-repo:tagname

?
1
2
docker tag hello-world:latest mrhelloworld/test-hello-world:1.0.0
docker push mrhelloworld/test-hello-world:1.0.0

DockerHub 镜像仓库的使用详解

查看仓库

DockerHub 镜像仓库的使用详解

拉取镜像

通过 docker pull mrhelloworld/test-hello-world:1.0.0 测试镜像是否可以拉取。

DockerHub 镜像仓库的使用详解

退出账号

通过 docker logout 命令退出 dockerhub。

?
1
2
[root@localhost ~]# docker logout
removing login credentials for https://index.docker.io/v1/

dockerhub 镜像仓库的使用就学到这里,考虑到网络的原因,从 dockerhub 下载和上传镜像速度可能会比较慢,而且生产上使用的 docker 镜像可能包含我们的代码、配置信息等,不想被外部人员获取,只允许内网的开发人员下载。怎么解决呢?可以通过搭建私有镜像仓库实现,下文我们就一起学习如何搭建 docker 私有镜像仓库。

到此这篇关于dockerhub 镜像仓库的使用详解的文章就介绍到这了,更多相关dockerhub 镜像仓库使用内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/weixin_43995372/article/details/108330667