diff options
author | Milivoje Legenovic <m.legenovic@gmail.com> | 2021-02-25 00:42:06 +0100 |
---|---|---|
committer | Milivoje Legenovic <m.legenovic@gmail.com> | 2021-02-26 03:08:10 +0100 |
commit | fcce1da1bbeae708961f3002540fbd04b46e5f40 (patch) | |
tree | 488a33dfa208676cfea444ace7b6eadcde37ca79 /pkg/api/handlers/libpod/images_pull.go | |
parent | 25d81955ec959d0cfa2958edba0935d1257dd787 (diff) | |
download | podman-fcce1da1bbeae708961f3002540fbd04b46e5f40.tar.gz podman-fcce1da1bbeae708961f3002540fbd04b46e5f40.tar.bz2 podman-fcce1da1bbeae708961f3002540fbd04b46e5f40.zip |
Correct compat images/create?fromImage response
Signed-off-by: Milivoje Legenovic <m.legenovic@gmail.com>
Diffstat (limited to 'pkg/api/handlers/libpod/images_pull.go')
-rw-r--r-- | pkg/api/handlers/libpod/images_pull.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/api/handlers/libpod/images_pull.go b/pkg/api/handlers/libpod/images_pull.go index c8b777be4..e2e4b53b4 100644 --- a/pkg/api/handlers/libpod/images_pull.go +++ b/pkg/api/handlers/libpod/images_pull.go @@ -136,7 +136,8 @@ func ImagesPull(w http.ResponseWriter, r *http.Request) { &dockerRegistryOptions, image.SigningOptions{}, nil, - util.PullImageAlways) + util.PullImageAlways, + nil) if err != nil { stderr.Write([]byte(err.Error() + "\n")) } else { |