Updated the docker auth config

This commit is contained in:
Diptanu Choudhury
2016-02-06 05:47:56 -08:00
parent 1343e481f3
commit c4fd236026
2 changed files with 2 additions and 2 deletions

View File

@@ -442,7 +442,7 @@ func (d *DockerDriver) Start(ctx *ExecContext, task *structs.Task) (DriverHandle
}
}
if authConfig := d.config.Read("docker.auth_config"); authConfig != "" {
if authConfig := d.config.Read("docker.auth.config"); authConfig != "" {
if f, err := os.Open(authConfig); err == nil {
defer f.Close()
if authConfigurations, err := docker.NewAuthConfigurations(f); err == nil {