github.com/daaku/docker@v1.5.0/docs/man/docker-login.1.md (about)

     1  % DOCKER(1) Docker User Manuals
     2  % Docker Community
     3  % JUNE 2014
     4  # NAME
     5  docker-login - Register or log in to a Docker registry server, if no server is specified "https://index.docker.io/v1/" is the default.
     6  
     7  # SYNOPSIS
     8  **docker login**
     9  [**-e**|**--email**[=*EMAIL*]]
    10  [**--help**]
    11  [**-p**|**--password**[=*PASSWORD*]]
    12  [**-u**|**--username**[=*USERNAME*]]
    13  [SERVER]
    14  
    15  # DESCRIPTION
    16  Register or Login to a docker registry server, if no server is
    17  specified "https://index.docker.io/v1/" is the default. If you want to
    18  login to a private registry you can specify this by adding the server name.
    19  
    20  # OPTIONS
    21  **-e**, **--email**=""
    22     Email
    23  
    24  **--help**
    25    Print usage statement
    26  
    27  **-p**, **--password**=""
    28     Password
    29  
    30  **-u**, **--username**=""
    31     Username
    32  
    33  # EXAMPLES
    34  
    35  ## Login to a local registry
    36  
    37      # docker login localhost:8080
    38  
    39  # HISTORY
    40  April 2014, Originally compiled by William Henry (whenry at redhat dot com)
    41  based on docker.com source material and internal work.
    42  June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>