diff options
Diffstat (limited to 'cmd/podman/push.go')
-rw-r--r-- | cmd/podman/push.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/push.go b/cmd/podman/push.go index 3a39a1a0e..d80af2ef3 100644 --- a/cmd/podman/push.go +++ b/cmd/podman/push.go @@ -151,5 +151,5 @@ func pushCmd(c *cli.Context) error { } //return runtime.PushImage(srcName, destName, options) - return newImage.PushImage(destName, manifestType, c.String("authfile"), c.String("signature-policy"), writer, c.Bool("compress"), so, &dockerRegistryOptions) + return newImage.PushImage(getContext(), destName, manifestType, c.String("authfile"), c.String("signature-policy"), writer, c.Bool("compress"), so, &dockerRegistryOptions) } |