summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorbaude <bbaude@redhat.com>2018-10-08 13:46:09 -0500
committerbaude <bbaude@redhat.com>2018-10-11 09:52:53 -0500
commit255b56ae4122e25a969bbd13d8105763746d2ca7 (patch)
treee275d10256d93f6893f961dfdcd6aef18fcd6a88 /docs
parent23c9816ba9ff1af3538dcb725d86fc565df53a30 (diff)
downloadpodman-255b56ae4122e25a969bbd13d8105763746d2ca7.tar.gz
podman-255b56ae4122e25a969bbd13d8105763746d2ca7.tar.bz2
podman-255b56ae4122e25a969bbd13d8105763746d2ca7.zip
fix runlabel functions based on QA feedback
Signed-off-by: baude <bbaude@redhat.com>
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)