mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
The compat create endpoint should 404 on no such image
This matches Docker behavior, and will make the Docker frontend work with `podman system service` (Docker tries to create, then if that fails with 404 sends a request to pull the image). Fixes #6960 Signed-off-by: Matthew Heon <matthew.heon@pm.me>
This commit is contained in:
@ -9,6 +9,7 @@ import (
|
||||
|
||||
"github.com/containers/common/pkg/config"
|
||||
"github.com/containers/libpod/v2/libpod"
|
||||
"github.com/containers/libpod/v2/libpod/define"
|
||||
image2 "github.com/containers/libpod/v2/libpod/image"
|
||||
"github.com/containers/libpod/v2/pkg/api/handlers"
|
||||
"github.com/containers/libpod/v2/pkg/api/handlers/utils"
|
||||
@ -45,6 +46,11 @@ func CreateContainer(w http.ResponseWriter, r *http.Request) {
|
||||
}
|
||||
newImage, err := runtime.ImageRuntime().NewFromLocal(input.Image)
|
||||
if err != nil {
|
||||
if errors.Cause(err) == define.ErrNoSuchImage {
|
||||
utils.Error(w, "No such image", http.StatusNotFound, err)
|
||||
return
|
||||
}
|
||||
|
||||
utils.Error(w, "Something went wrong.", http.StatusInternalServerError, errors.Wrap(err, "NewFromLocal()"))
|
||||
return
|
||||
}
|
||||
|
Reference in New Issue
Block a user