mirror of https://github.com/containers/podman.git
Change error message for compatibility with docker
Fix #12315 Signed-off-by: Michael Scherer <misc@redhat.com>
This commit is contained in:
parent
f031bd23c6
commit
422dc5e693
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue