Skip to content

Commit 6ecab95

Browse files
mattwalo32ndeloof
authored andcommitted
Include image name in error message
Signed-off-by: Matthew Walowski <[email protected]>
1 parent 12e0ac8 commit 6ecab95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/compose/images.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ func (s *composeService) getImages(ctx context.Context, images []string) (map[st
9090
if errdefs.IsNotFound(err) {
9191
return nil
9292
}
93-
return err
93+
return fmt.Errorf("unable to get image '%s': %w", img, err)
9494
}
9595
tag := ""
9696
repository := ""

0 commit comments

Comments
 (0)