2014-04-16 14:07:55 -04:00
% DOCKER(1) Docker User Manuals
2014-06-30 22:58:04 -04:00
% Docker Community
% JUNE 2014
2014-04-16 14:07:55 -04:00
# NAME
2016-02-29 20:51:36 -05:00
docker-login - Log in to a Docker registry.
2014-04-16 14:07:55 -04:00
# SYNOPSIS
2014-06-30 22:58:04 -04:00
**docker login**
2014-10-15 17:14:12 -04:00
[**--help**]
2014-06-30 22:58:04 -04:00
[**-p**|**--password**[=*PASSWORD*]]
[**-u**|**--username**[=*USERNAME*]]
2014-11-27 23:21:55 -05:00
[SERVER]
2014-04-16 14:07:55 -04:00
# DESCRIPTION
2016-02-29 20:51:36 -05:00
Log in to a Docker Registry located on the specified
2015-04-01 15:20:59 -04:00
`SERVER` . You can specify a URL or a `hostname` for the `SERVER` value. If you
do not specify a `SERVER` , the command uses Docker's public registry located at
`https://registry-1.docker.io/` by default. To get a username/password for Docker's public registry, create an account on Docker Hub.
2014-04-16 14:07:55 -04:00
2016-02-29 20:51:36 -05:00
`docker login` requires user to use `sudo` or be `root` , except when:
2015-11-02 17:20:38 -05:00
1. connecting to a remote daemon, such as a `docker-machine` provisioned `docker engine` .
2016-02-29 20:51:36 -05:00
2. user is added to the `docker` group. This will impact the security of your system; the `docker` group is `root` equivalent. See [Docker Daemon Attack Surface ](https://docs.docker.com/articles/security/#docker-daemon-attack-surface ) for details.
2015-11-02 17:20:38 -05:00
2015-04-01 15:20:59 -04:00
You can log into any public or private repository for which you have
credentials. When you log in, the command stores encoded credentials in
2015-07-10 14:49:57 -04:00
`$HOME/.docker/config.json` on Linux or `%USERPROFILE%/.docker/config.json` on Windows.
2015-03-23 23:48:12 -04:00
2015-11-02 17:20:38 -05:00
> **Note**: When running `sudo docker login` credentials are saved in `/root/.docker/config.json`.
>
2014-04-16 14:07:55 -04:00
# OPTIONS
2014-10-15 17:14:12 -04:00
**--help**
Print usage statement
2014-04-16 14:07:55 -04:00
**-p**, ** --password**=""
Password
**-u**, ** --username**=""
Username
2014-06-30 22:58:04 -04:00
# EXAMPLES
2014-04-16 14:07:55 -04:00
2015-04-01 15:20:59 -04:00
## Login to a registry on your localhost
2014-04-16 14:07:55 -04:00
# docker login localhost:8080
2015-03-01 01:36:00 -05:00
# See also
**docker-logout(1)** to log out from a Docker registry.
2014-04-16 14:07:55 -04:00
# HISTORY
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
2014-07-01 20:30:25 -04:00
based on docker.com source material and internal work.
2014-06-30 22:58:04 -04:00
June 2014, updated by Sven Dowideit < SvenDowideit @ home . org . au >
2015-04-01 15:20:59 -04:00
April 2015, updated by Mary Anthony for v2 < mary @ docker . com >
2015-11-02 17:20:38 -05:00
November 2015, updated by Sally O'Malley < somalley @ redhat . com >