You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Provide better error message for containerd-related issues
571
-
ifisContainerdEnabled&&strings.Contains(err.Error(), "failed to write image") {
602
+
ifstrings.Contains(err.Error(), "failed to write image") &&strings.Contains(err.Error(), "No such image") {
572
603
returnnil, &internal.ErrorWithSuggestion{
573
604
Err: err,
574
-
Suggestion: "Docker is configured to use containerd image store, which may cause compatibility issues with pack CLI. "+
605
+
Suggestion: "This error typically occurs when Docker is configured to use containerd image store, which may cause compatibility issues with pack CLI. "+
575
606
"Consider disabling 'Use containerd for pulling and storing images' in Docker Desktop settings, "+
576
607
"or try running the command again as this may be a transient issue.",
0 commit comments