Merge pull request #26 from rosscado/auth

Upgrade client to fix build, authentication, and image issues
This commit is contained in:
David Gardner 2016-12-22 12:42:52 -08:00 committed by GitHub
commit 37f7248233
138 changed files with 284 additions and 22869 deletions

View file

@ -45,7 +45,9 @@ func Update(client container.Client, names []string, cleanup bool, noRestart boo
for i, container := range containers {
stale, err := client.IsContainerStale(container)
if err != nil {
return err
log.Infof("Unable to update container %s. Proceeding to next.", containers[i].Name())
log.Debug(err)
stale = false
}
containers[i].Stale = stale
}