Fixed the docker auth config

This commit is contained in:
Diptanu Choudhury
2015-11-15 23:34:05 -05:00
committed by Alex Dadgar
parent 174ac10a8a
commit 041f48dc71

View File

@@ -25,10 +25,10 @@ type DockerDriver struct {
}
type DockerAuthConfig struct {
UserName string `mapstructure:"auth.username"` // user name of the registry
Password string `mapstructure:"auth.password` // password to access the registry
Email string `mapstructure:"auth.email"` // email address of the user who is allowed to access the registry
ServerAddress string `mapstructure:"auth.server_address` // server address of the registry
UserName string `mapstructure:"auth.username"` // user name of the registry
Password string `mapstructure:"auth.password"` // password to access the registry
Email string `mapstructure:"auth.email"` // email address of the user who is allowed to access the registry
ServerAddress string `mapstructure:"auth.server_address"` // server address of the registry
}