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
|
2015-04-01 15:20:59 -04:00
|
|
|
docker-login - Register or 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**
|
|
|
|
[**-e**|**--email**[=*EMAIL*]]
|
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
|
2015-04-18 20:42:24 -04:00
|
|
|
Register or 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
|
|
|
|
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
|
|
|
|
2014-04-16 14:07:55 -04:00
|
|
|
# OPTIONS
|
|
|
|
**-e**, **--email**=""
|
2014-06-30 22:58:04 -04:00
|
|
|
Email
|
2014-04-16 14:07:55 -04:00
|
|
|
|
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>
|