Change error message for compatibility with docker

Fix #12315

Signed-off-by: Michael Scherer <misc@redhat.com>
This commit is contained in:
Michael Scherer 2021-11-16 19:07:23 +01:00
parent f031bd23c6
commit 422dc5e693
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ func CreateContainer(w http.ResponseWriter, r *http.Request) {
newImage, resolvedName, err := runtime.LibimageRuntime().LookupImage(body.Config.Image, nil)
if err != nil {
if errors.Cause(err) == storage.ErrImageUnknown {
utils.Error(w, "No such image", http.StatusNotFound, err)
utils.Error(w, "No such image", http.StatusNotFound, errors.Wrap(err, "No such image"))
return
}