diff options
-rw-r--r-- | libpod/image/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/image/pull.go b/libpod/image/pull.go index ff978d563..e84fe44ec 100644 --- a/libpod/image/pull.go +++ b/libpod/image/pull.go @@ -272,7 +272,7 @@ func (ir *Runtime) doPullImage(ctx context.Context, sc *types.SystemContext, goa if goal.usedSearchRegistries && len(goal.searchedRegistries) == 0 { return nil, errors.Errorf("image name provided is a short name and no search registries are defined in %s.", registryPath) } - return nil, errors.Errorf("unable to find image in the registries defined in %q", registryPath) + return nil, errors.Errorf("unable to find image on registries defined in %s, or you do not have pull access", registryPath) } return images, nil } |