summaryrefslogtreecommitdiff
path: root/cmd/podman/create.go
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-04-14 15:34:48 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-04-14 23:55:24 +0000
commitfa8442e4a063b9a074cd2d17effdf5de138f90cb (patch)
tree9bf00bed67a58ad35c9eb7ac6f176e3bb48fa4fd /cmd/podman/create.go
parent62b59df053357f040d85c26727734815046e2bc3 (diff)
downloadpodman-fa8442e4a063b9a074cd2d17effdf5de138f90cb.tar.gz
podman-fa8442e4a063b9a074cd2d17effdf5de138f90cb.tar.bz2
podman-fa8442e4a063b9a074cd2d17effdf5de138f90cb.zip
podman pull should always try to pull
In the case where you have an image local, if the the user runs podman pull, we should always attempt to pull an updated image. Added a forceRemote bool to New (image) so we can differentiate between "pull" or run because the actions differ. Run does not need to pull the latest -- only run. Signed-off-by: baude <bbaude@redhat.com> Closes: #618 Approved by: baude
Diffstat (limited to 'cmd/podman/create.go')
-rw-r--r--cmd/podman/create.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/create.go b/cmd/podman/create.go
index 8bf61a2ca..a1d3ead20 100644
--- a/cmd/podman/create.go
+++ b/cmd/podman/create.go
@@ -181,7 +181,7 @@ func createCmd(c *cli.Context) error {
rtc := runtime.GetConfig()
- newImage, err := runtime.ImageRuntime().New(c.Args()[0], rtc.SignaturePolicyPath, "", os.Stderr, nil, image.SigningOptions{})
+ newImage, err := runtime.ImageRuntime().New(c.Args()[0], rtc.SignaturePolicyPath, "", os.Stderr, nil, image.SigningOptions{}, false)
if err != nil {
return err
}