mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
12 lines
403 B
Go
12 lines
403 B
Go
|
package types
|
||
|
|
||
|
// AuthConfig contains authorization information for connecting to a Registry
|
||
|
type AuthConfig struct {
|
||
|
Username string `json:"username,omitempty"`
|
||
|
Password string `json:"password,omitempty"`
|
||
|
Auth string `json:"auth"`
|
||
|
Email string `json:"email"`
|
||
|
ServerAddress string `json:"serveraddress,omitempty"`
|
||
|
RegistryToken string `json:"registrytoken,omitempty"`
|
||
|
}
|