10_29_Docker—发布镜像到DockerHub
原创
©著作权归作者所有:来自51CTO博客作者狂野小白兔的原创作品,请联系作者获取转载授权,否则将追究法律责任
发布自己的镜像
Docker流程
Docker Hub
1、地址:docker hub官网注册自己的账号
2、确定这个账号可以登录
3、在我们的服务器上提交自己的镜像
# 使用命令行登录【前提是登陆了】
[root@iZ2ze3omirvragaujkhihjZ /]# 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@iZ2ze3omirvragaujkhihjZ /]# docker login -u hippo8421
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
4、登录完毕后就可以提交镜像了,就一步:docker push
# docker push 上去即可!自己发布的镜像尽量带上版本号