mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5b321e3287
Signed-off-by: Daniel Nephin <dnephin@gmail.com>
11 lines
403 B
Go
11 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"`
|
|
}
|