mirror of
https://github.com/containers/podman.git
synced 2025-06-23 18:59:30 +08:00
Merge pull request #12318 from mscherer/2nd_try
Change error message for compatibility with docker
This commit is contained in:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user