mirror of https://github.com/docker/cli.git
docs: document what AuthConfig.Auth is
Signed-off-by: Hsing-Yu (David) Chen <davidhsingyuchen@gmail.com>
This commit is contained in:
parent
65d3f7830d
commit
7e1255c3d6
|
@ -4,7 +4,8 @@ package types
|
||||||
type AuthConfig struct {
|
type AuthConfig struct {
|
||||||
Username string `json:"username,omitempty"`
|
Username string `json:"username,omitempty"`
|
||||||
Password string `json:"password,omitempty"`
|
Password string `json:"password,omitempty"`
|
||||||
Auth string `json:"auth,omitempty"`
|
// Auth is the base64 encoding of the concatenation of username and password.
|
||||||
|
Auth string `json:"auth,omitempty"`
|
||||||
|
|
||||||
// Email is an optional value associated with the username.
|
// Email is an optional value associated with the username.
|
||||||
// This field is deprecated and will be removed in a later
|
// This field is deprecated and will be removed in a later
|
||||||
|
|
Loading…
Reference in New Issue