summaryrefslogtreecommitdiff
path: root/cmd/podman/pull.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-17 22:44:04 +0100
committerGitHub <noreply@github.com>2019-02-17 22:44:04 +0100
commit3f32eae56fed23e93c45d7da53da33702e954a26 (patch)
treecf3b89fca4fbbe365f2ebca71ed26980c5307523 /cmd/podman/pull.go
parent6aaf8d39a9a26510e40fd54399e97fe177afadde (diff)
parentb62c0e703d70439c677205fb423e81491e8d1cf9 (diff)
downloadpodman-3f32eae56fed23e93c45d7da53da33702e954a26.tar.gz
podman-3f32eae56fed23e93c45d7da53da33702e954a26.tar.bz2
podman-3f32eae56fed23e93c45d7da53da33702e954a26.zip
Merge pull request #2357 from TomSweeneyRedHat/dev/tsweeney/cobrahelp3
Add 3rd chunk of Cobra examples
Diffstat (limited to 'cmd/podman/pull.go')
-rw-r--r--cmd/podman/pull.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/pull.go b/cmd/podman/pull.go
index 6e060d6f5..859228cbd 100644
--- a/cmd/podman/pull.go
+++ b/cmd/podman/pull.go
@@ -36,7 +36,9 @@ specified, the image with the 'latest' tag (if it exists) is pulled
pullCommand.GlobalFlags = MainGlobalOpts
return pullCmd(&pullCommand)
},
- Example: "",
+ Example: `podman pull imageName
+ podman pull --cert-dir image/certs --authfile temp-auths/myauths.json docker://docker.io/myrepo/finaltest
+ podman pull fedora:latest`,
}
)