Image upload and download (Alibaba Cloud)

One, create a warehouse

Alibaba Cloud Container Mirror Warehouse is used here.
Operation path: 容器镜像服务 - 默认实例 - 镜像仓库 - 创建镜像仓库 - 本地仓库
upload/download operation steps will be generated after creation;

2. Upload the mirror image (push)

1) Login (you need to ensure that you can access the external network)

[root@localhost docker]# docker login --username=xxxxx registry.cn-shenzhen.aliyuncs.com
Password: 
WARNING! Your password will be stored unencrypted in /root/.docker/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store

Login Succeeded

2)tag

[root@localhost docker]# docker tag 6cf450e46d3f registry.cn-shenzhen.aliyuncs.com/pandafox/mp:1.0

3)push

docker push registry.cn-shenzhen.aliyuncs.com/pandafox/mp:1.0

3. Download the mirror image (pull)

docker pull registry.cn-shenzhen.aliyuncs.com/pandafox/mp:1.0

Guess you like

Origin blog.csdn.net/shaixinxin/article/details/107753526
Recommended