Docker 镜像 - 推送到阿里云

▶ 准备工作

1、登录阿里云控制台

  • 地址:https://cr.console.aliyun.com/cn-hangzhou/instances/repositories

**2、创建命名空间

  • 地址:https://cr.console.aliyun.com/cn-hangzhou/instances/namespaces
Docker 镜像 - 推送到阿里云_第1张图片

3、获取访问凭证

  • 地址:https://cr.console.aliyun.com/cn-hangzhou/instances/credentials
Docker 镜像 - 推送到阿里云_第2张图片

4、登录阿里云镜像仓库

docker login --username=<阿里云登录账号> registry.cn-hangzhou.aliyuncs.com

▶ 推送镜像

1、构建镜像

docker build -t registry.cn-hangzhou.aliyuncs.com/<命名空间>/<应用镜像名>:<镜像版本> .

2、推送镜像

docker push registry.cn-hangzhou.aliyuncs.com/<命名空间>/<应用镜像名>:<镜像版本>

你可能感兴趣的:(Docker 镜像 - 推送到阿里云)