发布镜像到dockerhub
1,在dockerhub上注册自己的账号
2,登录
[root@CentOs WEB-INF]# docker login --help
Usage: docker login [OPTIONS] [SERVER]
Log in to a Docker registry.
If no server is specified, the default is defined by the daemon.
Options:
-p, --password string Password
--password-stdin Take the password from stdin
-u, --username string Username
[root@CentOs WEB-INF]#
3,登录完毕就可以提交镜像了
就是 docker push命令
[root@CentOs WEB-INF]# docker push 作者名/diytomcat:1.0
The push refers to repository [docker.io/slimewz/diytomcat]
An image does not exist locally with the tag: slimewz/diytomcat
[root@CentOs WEB-INF]#
这时候我们会发现有问题,我们需要先给镜像命名,然后提交(记得带上自己的版本号)。
docker tag 镜像id 镜像名
之后重复上一个命令就可以提交了