Error message is related to init image, not on boot.

Signed-off-by: Guillaume Rose <guillaume.rose@docker.com>
This commit is contained in:
Guillaume Rose 2019-09-30 09:13:48 +02:00
parent 3be6466e00
commit 4ffb639105

View File

@ -179,7 +179,7 @@ func extractReferences(m *Moby) error {
for _, ii := range m.Init {
r, err := reference.Parse(ii)
if err != nil {
return fmt.Errorf("extract on boot image reference: %v", err)
return fmt.Errorf("extract init image reference: %v", err)
}
m.initRefs = append(m.initRefs, &r)
}