mirror of https://github.com/docker/compose.git
Include image name in error message
Signed-off-by: Matthew Walowski <mattwalowski@gmail.com>
This commit is contained in:
parent
12e0ac898a
commit
6ecab95775
|
@ -90,7 +90,7 @@ func (s *composeService) getImages(ctx context.Context, images []string) (map[st
|
|||
if errdefs.IsNotFound(err) {
|
||||
return nil
|
||||
}
|
||||
return err
|
||||
return fmt.Errorf("unable to get image '%s': %w", img, err)
|
||||
}
|
||||
tag := ""
|
||||
repository := ""
|
||||
|
|
Loading…
Reference in New Issue