docker使用阿里云镜像仓库

Posted 杨哥哥

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker使用阿里云镜像仓库相关的知识,希望对你有一定的参考价值。

1:阿里云docker仓库 https://dev.aliyun.com/search.html

2:进去注册帐号后,点击自己的管理中心。

3:在管理中心点击加速器,右边面板会有你的加速地址,右边面板下面有详细设置步骤。 
以下代码用于检测你有没有开启加速器

sudo  ps -ef | grep 
root     17825     1  0 16:50 ?        00:00:11 /usr/bin/dockerd --registry-mirror=https://no1pfk8z.mirror.aliyuncs.com --registry-mirror=https://no1pfk8z.mirror.aliyuncs.com --registry-mirror=https://n42ocvxt.mirror.aliyuncs.com --raw-logs
  • 1
  • 2

有如上的信息输出代表你已经成功了

4:使用commit构建镜像,执行命令

 docker pull centos:latest
 sudo docker run -it -p 80 --name willian centos /bin/bash
  • 1
  • 2

在bash安装所需要的运行的环境

 sudo docker commit -a ‘ss‘ willian willian/java8
  • 1

将镜像提交到本地仓库

sudo docker images
  • 1

这时可以看到你自己的镜像

  $ sudo docker login --username=willian19960118 registry.cn-hangzhou.aliyuncs.com
  • 1
  • 2

给阿里云仓库打tag

  $ sudo docker tag [ImageId] registry.cn-hangzhou.aliyuncs.com/willianevils/zhangweilun:[镜像版本号]
  • 1
  • 2

push

$ sudo docker push registry.cn-hangzhou.aliyuncs.com/willianevils/zhangweilun:[

以上是关于docker使用阿里云镜像仓库的主要内容,如果未能解决你的问题,请参考以下文章

Docker - 配置阿里云镜像仓库

阿里云上的Docker容器镜像仓库

将本地docker镜像上传至阿里云镜像仓库

Docker: 上传镜像至docker仓库或者阿里云仓库

docker本地镜像发布到阿里云镜像仓库

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