目录
1、登录自己的阿里云容器镜像服务
2、找到自己镜像仓库远程登录的命令以及推送帮助
3、开始推送镜像(实例)
4、把镜像拉下来
前言
1【什么是镜像仓库】
存放着很多镜像的仓库
2【为什么要使用镜像仓库】
- 起到备份的作用
- 方便其他机器下载使用
3【镜像仓库的种类】
1.公共镜像仓库
官方: Docker
非官方: 其他组织或者公司开发的镜像,供大家免费使用
2.私有镜像仓库
公司自己搭建的,用于存放公司内部的镜像,自己管理,不提供给外部使用,避免了商业项目暴露出去的风险
1、登录自己的阿里云容器镜像服务
阿里云登录 - 欢迎登录阿里云,安全稳定的云计算服务平台
2、找到自己镜像仓库远程登录的命令以及推送帮助
文章来源:https://www.toymoban.com/news/detail-414160.html
文章来源地址https://www.toymoban.com/news/detail-414160.html
3、开始推送镜像(实例)
[root@localhost ~]# docker tag 354edb2c67be registry.cn-hangzhou.aliyuncs.com/qu2106154/xiaoqiang:1.0
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
mynginx 01 354edb2c67be 2 hours ago 141MB
registry.cn-hangzhou.aliyuncs.com/qu2106154/xiaoqiang 1.0 354edb2c67be 2 hours ago 141MB
qiang_ge/ubuntu latest 25d741360324 3 weeks ago 72.8MB
tutum/influxdb 0.9 7aa2a38f2ef6 6 years ago 275MB
[root@localhost ~]# docker push registry.cn-hangzhou.aliyuncs.com/qu2106154/xiaoqiang:1.0
The push refers to repository [registry.cn-hangzhou.aliyuncs.com/qu2106154/xiaoqiang]
169cd27cf305: Pushed
d874fd2bc83b: Layer already exists
32ce5f6a5106: Layer already exists
f1db227348d0: Layer already exists
b8d6e692a25e: Layer already exists
e379e8aedd4d: Layer already exists
2edcec3590a4: Layer already exists
1.0: digest: sha256:84ea9b38204b0415d11d67db4f78a4a90e67a14bf0af660ac71841159197858c size: 1777
4、把镜像拉下来
[root@localhost ~]# docker pull registry.cn-hangzhou.aliyuncs.com/qu2106154/xiaoqiang:1.0
1.0: Pulling from qu2106154/xiaoqiang
a2abf6c4d29d: Already exists
a9edb18cadd1: Already exists
589b7251471a: Already exists
186b1aaa4aa6: Already exists
b4df32aa5a72: Already exists
a0bcbecc962e: Already exists
7c86e5b108f7: Pull complete
Digest: sha256:84ea9b38204b0415d11d67db4f78a4a90e67a14bf0af660ac71841159197858c
Status: Downloaded newer image for registry.cn-hangzhou.aliyuncs.com/qu2106154/xiaoqiang:1.0
registry.cn-hangzhou.aliyuncs.com/qu2106154/xiaoqiang:1.0
[root@localhost ~]# docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
registry.cn-hangzhou.aliyuncs.com/qu2106154/xiaoqiang 1.0 354edb2c67be 3 hours ago 141MB
到了这里,关于【8】创建阿里云镜像仓库的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!