diff --git a/actions/update.go b/actions/update.go index fe8fc98..7999d4a 100644 --- a/actions/update.go +++ b/actions/update.go @@ -45,7 +45,9 @@ func Update(client container.Client, names []string, cleanup bool) error { for i, container := range containers { stale, err := client.IsContainerStale(container) if err != nil { - return err + log.Infof("Unable to update container %. Proceeding to next.", containers[i].Name()) + log.Debug(err) + stale = false } containers[i].Stale = stale }