mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
be1df1ee13
ImageCache is now independent of `Daemon` and is located in `image/cache` package. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
27 lines
608 B
Go
27 lines
608 B
Go
package daemon
|
|
|
|
import (
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/docker/docker/builder"
|
|
"github.com/docker/docker/image/cache"
|
|
)
|
|
|
|
// MakeImageCache creates a stateful image cache.
|
|
func (daemon *Daemon) MakeImageCache(sourceRefs []string) builder.ImageCache {
|
|
if len(sourceRefs) == 0 {
|
|
return cache.NewLocal(daemon.imageStore)
|
|
}
|
|
|
|
cache := cache.New(daemon.imageStore)
|
|
|
|
for _, ref := range sourceRefs {
|
|
img, err := daemon.GetImage(ref)
|
|
if err != nil {
|
|
logrus.Warnf("Could not look up %s for cache resolution, skipping: %+v", ref, err)
|
|
continue
|
|
}
|
|
cache.Populate(img)
|
|
}
|
|
|
|
return cache
|
|
}
|