其他分享
首页 > 其他分享> > 提交容器到公有仓库docker hub

提交容器到公有仓库docker hub

作者:互联网

将需要提交的容器制作成镜像

查看需要提交的容器ID

docker ps -a

将容器制作成本地镜像

docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]

OPTIONS说明:

docker commit -a "作者名称" -m "test commit a contanner" 容器ID 镜像名称:镜像版本

在这里插入图片描述

将自己的镜像发布到共有仓库

1.注册dockerhub账户

docker提供了一个类似于github的仓库dockerhub,

网址docker hub需要注册使用

2.在本地登录docker hub账号

docker login

img

3.修改正确的镜像名

注意要保证image的tag是账户名,如果镜像名字不对,需要改一下tag

语法是: docker tag 镜像名 用户名/私有仓库名

docker tag 上一步commit后新增的镜像ID dockerhub账号/镜像名称:版本号

4.推送docker image到dockerhub

docker push 用户名/镜像名

docker push luntek/hello-world-czw-test:latest

标签:容器,hub,dockerhub,公有,tag,commit,镜像,docker
来源: https://blog.csdn.net/qq_42910468/article/details/121438468