diff --git a/cmd/kpod/pull.go b/cmd/kpod/pull.go index 69f31def..ba038416 100644 --- a/cmd/kpod/pull.go +++ b/cmd/kpod/pull.go @@ -49,6 +49,7 @@ func pullCmd(c *cli.Context) error { if err != nil { return errors.Wrapf(err, "could not create runtime") } + defer runtime.Shutdown() if err := runtime.PullImage(image, c.Bool("all-tags"), os.Stdout); err != nil { return errors.Errorf("error pulling image from %q: %v", image, err) }