mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #21872 from Microsoft/sjw/nanoserver-fix
Fixing nanoserver image load bug.
This commit is contained in:
commit
d5ef62f489
2 changed files with 4 additions and 2 deletions
|
@ -401,7 +401,9 @@ func restoreCustomImage(is image.Store, ls layer.Store, rs reference.Store) erro
|
||||||
|
|
||||||
id, err := is.Create(config)
|
id, err := is.Create(config)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
logrus.Warnf("Failed to restore custom image %s with error: %s.", name, err.Error)
|
||||||
|
logrus.Warnf("Skipping image %s...", name)
|
||||||
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := rs.AddTag(ref, id, true); err != nil {
|
if err := rs.AddTag(ref, id, true); err != nil {
|
||||||
|
|
|
@ -454,7 +454,7 @@ func (d *Driver) GetCustomImageInfos() ([]CustomImageInfo, error) {
|
||||||
imageData.ID = id
|
imageData.ID = id
|
||||||
|
|
||||||
// For now, hard code that all base images except nanoserver depend on win32k support
|
// For now, hard code that all base images except nanoserver depend on win32k support
|
||||||
if imageData.Name != "nanoserver" {
|
if imageData.Name != "NanoServer" {
|
||||||
imageData.OSFeatures = append(imageData.OSFeatures, "win32k")
|
imageData.OSFeatures = append(imageData.OSFeatures, "win32k")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue