From 041f48dc715c81bb16d183a9164d478397da4fe9 Mon Sep 17 00:00:00 2001 From: Diptanu Choudhury Date: Sun, 15 Nov 2015 23:34:05 -0500 Subject: [PATCH] Fixed the docker auth config --- client/driver/docker.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/driver/docker.go b/client/driver/docker.go index c6ac5c89b..eba4341bb 100644 --- a/client/driver/docker.go +++ b/client/driver/docker.go @@ -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 }