mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-22 16:27:51 +00:00
Merge pull request #9311 from deadNightTiger/fix-pull-dockerjava
apiv2: handle docker-java clients pulling
This commit is contained in:
commit
64255f5fb8
2 changed files with 3 additions and 3 deletions
|
|
@ -264,12 +264,12 @@ func CreateImageFromImage(w http.ResponseWriter, r *http.Request) {
|
|||
// Success
|
||||
utils.WriteResponse(w, http.StatusOK, struct {
|
||||
Status string `json:"status"`
|
||||
Error string `json:"error"`
|
||||
Error string `json:"error,omitempty"`
|
||||
Progress string `json:"progress"`
|
||||
ProgressDetail map[string]string `json:"progressDetail"`
|
||||
Id string `json:"id"` // nolint
|
||||
}{
|
||||
Status: fmt.Sprintf("pulling image (%s) from %s", img.Tag, strings.Join(img.Names(), ", ")),
|
||||
Status: fmt.Sprintf("pulling image (%s) from %s (Download complete)", img.Tag, strings.Join(img.Names(), ", ")),
|
||||
ProgressDetail: map[string]string{},
|
||||
Id: img.ID(),
|
||||
})
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ t GET images/$iid/json 200 \
|
|||
.Id=sha256:$iid \
|
||||
.RepoTags[0]=$IMAGE
|
||||
|
||||
t POST "images/create?fromImage=alpine" '' 200
|
||||
t POST "images/create?fromImage=alpine" '' 200 .error=null .status~".*Download complete.*"
|
||||
|
||||
t POST "images/create?fromImage=alpine&tag=latest" '' 200
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue