summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2018-10-11 09:58:59 -0700
committerGitHub <noreply@github.com>2018-10-11 09:58:59 -0700
commitb5f4bb15a5569ba6cf3517c3c979c75ad205ada5 (patch)
tree0cec72e2fbd86156683b2ab19e7a1587a1c17380 /docs
parent9e1cdd56d4bdcb04da01d683d5c78d4d3e059d26 (diff)
parent255b56ae4122e25a969bbd13d8105763746d2ca7 (diff)
downloadpodman-b5f4bb15a5569ba6cf3517c3c979c75ad205ada5.tar.gz
podman-b5f4bb15a5569ba6cf3517c3c979c75ad205ada5.tar.bz2
podman-b5f4bb15a5569ba6cf3517c3c979c75ad205ada5.zip
Merge pull request #1607 from baude/runlabelfixes
fix runlabel functions based on QA feedback
Diffstat (limited to 'docs')
-rw-r--r--docs/podman-container-runlabel.1.md21
1 files changed, 19 insertions, 2 deletions
diff --git a/docs/podman-container-runlabel.1.md b/docs/podman-container-runlabel.1.md
index 889a5fb03..4611aa4d9 100644
--- a/docs/podman-container-runlabel.1.md
+++ b/docs/podman-container-runlabel.1.md
@@ -28,8 +28,8 @@ If the container image has a LABEL INSTALL instruction like the following:
Note: Podman will always ensure that `podman` is the first argument of the command being executed.
-**NAME**
-The name specified via the command. NAME will be replaced with IMAGE if it is not specified.
+**LABEL**
+The label name specified via the command.
**IMAGE**
Image name specified via the command.
@@ -95,6 +95,23 @@ Require HTTPS and verify certificates when contacting registries (default: true)
then tls verification will be used, If set to false then tls verification will not be used. If not specified
tls verification will be used unless the target registry is listed as an insecure registry in registries.conf
+## Examples ##
+
+Execute the run label of an image called foobar.
+```
+$ sudo podman container runlabel run foobar
+```
+
+Execute the install label of an image called foobar with additional arguments.
+```
+$ sudo podman container runlabel install foobar apples oranges
+```
+
+Display the command that would be executed by runlabel.
+```
+$ sudo podman container runlabel --display run foobar
+```
+
## SEE ALSO
podman(1)