diff --git a/pkg/compose/pull.go b/pkg/compose/pull.go index e244de81..addf2ad2 100644 --- a/pkg/compose/pull.go +++ b/pkg/compose/pull.go @@ -92,7 +92,16 @@ func (s *composeService) pull(ctx context.Context, project *types.Project, opts w.Event(progress.Event{ ID: service.Name, Status: progress.Done, - Text: "Exists", + Text: "Skipped - Image is already present locally", + }) + continue + } + default: + if _, ok := images[service.Image]; ok { + w.Event(progress.Event{ + ID: service.Name, + Status: progress.Done, + Text: "Skipped - Image is already present locally", }) continue }