mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fix some wrong vars or funcs in builder.go
Signed-off-by: lixiaobing10051267 <li.xiaobing1@zte.com.cn>
This commit is contained in:
parent
b1322e3de9
commit
ee8a3eee4f
1 changed files with 3 additions and 3 deletions
|
@ -62,7 +62,7 @@ type PathFileInfo struct {
|
||||||
os.FileInfo
|
os.FileInfo
|
||||||
// FilePath holds the absolute path to the file.
|
// FilePath holds the absolute path to the file.
|
||||||
FilePath string
|
FilePath string
|
||||||
// Name holds the basename for the file.
|
// FileName holds the basename for the file.
|
||||||
FileName string
|
FileName string
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -109,7 +109,7 @@ type Backend interface {
|
||||||
|
|
||||||
// GetImageOnBuild looks up a Docker image referenced by `name`.
|
// GetImageOnBuild looks up a Docker image referenced by `name`.
|
||||||
GetImageOnBuild(name string) (Image, error)
|
GetImageOnBuild(name string) (Image, error)
|
||||||
// TagImage tags an image with newTag
|
// TagImageWithReference tags an image with newTag
|
||||||
TagImageWithReference(image.ID, reference.Named) error
|
TagImageWithReference(image.ID, reference.Named) error
|
||||||
// PullOnBuild tells Docker to pull image referenced by `name`.
|
// PullOnBuild tells Docker to pull image referenced by `name`.
|
||||||
PullOnBuild(ctx context.Context, name string, authConfigs map[string]types.AuthConfig, output io.Writer) (Image, error)
|
PullOnBuild(ctx context.Context, name string, authConfigs map[string]types.AuthConfig, output io.Writer) (Image, error)
|
||||||
|
@ -163,7 +163,7 @@ type ImageCacheBuilder interface {
|
||||||
// ImageCache abstracts an image cache.
|
// ImageCache abstracts an image cache.
|
||||||
// (parent image, child runconfig) -> child image
|
// (parent image, child runconfig) -> child image
|
||||||
type ImageCache interface {
|
type ImageCache interface {
|
||||||
// GetCachedImageOnBuild returns a reference to a cached image whose parent equals `parent`
|
// GetCache returns a reference to a cached image whose parent equals `parent`
|
||||||
// and runconfig equals `cfg`. A cache miss is expected to return an empty ID and a nil error.
|
// and runconfig equals `cfg`. A cache miss is expected to return an empty ID and a nil error.
|
||||||
GetCache(parentID string, cfg *container.Config) (imageID string, err error)
|
GetCache(parentID string, cfg *container.Config) (imageID string, err error)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue