1.docker login介绍
docker login命令是用来登录到一个docker镜像仓库,如果没有指定镜像仓库地址,默认为docker
hub官方仓库。如果使用docker login命令登录到官方仓库,首先需要在官方仓库注册一个账号
本次为大家演示使用docker login命令登录自己搭建的harbor私有仓库
2.docker login用法
docker login [参数] [SERVER]
[root@centos79 ~]# docker login --helpUsage: docker login [OPTIONS] [SERVER]Log in to a 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@centos79 ~]#
3.实例
3.1.登录harbor私有仓库
命令:
docker login -u admin -p Harbor12345 http://172.20.10.12:5100
[root@centos79 ~]# docker login -u admin -p Harbor12345 http://172.20.10.12:5100WARNING! Using --password via the CLI is insecure. Use --password-stdin.WARNING! Your password will be stored unencrypted in /root/.do