docker镜像的上传和拉取

dockerhub网站:https://hub.docker.com/

登陆 / 登出 Docker镜像仓库

# 语法
docker login [OPTIONS] [SERVER]
docker logout [OPTIONS] [SERVER]
# 选项
    -u:登陆的用户名
    -p:登陆的密码
    
# 登陆,如果未指定镜像仓库地址,默认为官方仓库 Docker Hub,登陆成功会有 Login Succeeded 提示。
docker login -uq645526378 -pq645526378

# 登出
docker logout

上传 / 下载 镜像

在dockerhub上创建镜像仓库
image
用户名默认为账户用户名,仓库名自定义,可添加描述
image
有仓库以后就可以通过登陆账号后直接本地上传镜像了

# 先将本地镜像打标为用户名/仓库名[:版本]
docker tag 源镜像 q645526378/test:v1

# 上传镜像
docker push q645526378:v1

# 下载镜像
docker rmi q645526378/test:v1        # 先删除本地镜像
docker pull q645526378/test:v1

阿里云镜像仓库

https://cr.console.aliyun.com/cn-hangzhou/instance/dashboard
先创建一个命名空间
image
创建镜像仓库
image
本地仓库
image
之后就有参考文档了,上传推送和dockerhub差不多
image

posted @ 2023-03-10 23:07  待满茶杯  阅读(59)  评论(0编辑  收藏  举报