mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
![Stefan J. Wernli](/assets/img/avatar_default.png)
Signed-off-by: Stefan J. Wernli <swernli@microsoft.com> Windows: add support for images stored in alternate location. Signed-off-by: Stefan J. Wernli <swernli@microsoft.com>
30 lines
1,015 B
Go
30 lines
1,015 B
Go
package graphdriver
|
|
|
|
import (
|
|
"github.com/docker/docker/image"
|
|
"github.com/docker/docker/pkg/archive"
|
|
)
|
|
|
|
// NOTE: These interfaces are used for implementing specific features of the Windows
|
|
// graphdriver implementation. The current versions are a short-term solution and
|
|
// likely to change or possibly be eliminated, so avoid using them outside of the Windows
|
|
// graphdriver code.
|
|
|
|
// ImageRestorer interface allows the implementer to add a custom image to
|
|
// the graph and tagstore.
|
|
type ImageRestorer interface {
|
|
RestoreCustomImages(tagger Tagger, recorder Recorder) ([]string, error)
|
|
}
|
|
|
|
// Tagger is an interface that exposes the TagStore.Tag function without needing
|
|
// to import graph.
|
|
type Tagger interface {
|
|
Tag(repoName, tag, imageName string, force bool) error
|
|
}
|
|
|
|
// Recorder is an interface that exposes the Graph.Register and Graph.Exists
|
|
// functions without needing to import graph.
|
|
type Recorder interface {
|
|
Exists(id string) bool
|
|
Register(img *image.Image, layerData archive.Reader) error
|
|
}
|