summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-01-15 15:49:15 +0100
committerGitHub <noreply@github.com>2022-01-15 15:49:15 +0100
commitb84131eef879049a43f7cd00831575fa118cdefb (patch)
tree2cb7348b5170b601348da1197478a1e06ee8f6ae
parentecf818a1cddd5e3e62b4a2a761d44b2be336317e (diff)
parentab8a508489e7a9b6cc60d666339381953e498d19 (diff)
downloadpodman-b84131eef879049a43f7cd00831575fa118cdefb.tar.gz
podman-b84131eef879049a43f7cd00831575fa118cdefb.tar.bz2
podman-b84131eef879049a43f7cd00831575fa118cdefb.zip
Merge pull request #12875 from eriksjolund/fix_typo_env_podman_run
[CI:DOCS] Fix typo in --env
-rw-r--r--docs/source/markdown/podman-run.1.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/markdown/podman-run.1.md b/docs/source/markdown/podman-run.1.md
index 80652fcdf..f77d0418b 100644
--- a/docs/source/markdown/podman-run.1.md
+++ b/docs/source/markdown/podman-run.1.md
@@ -377,7 +377,7 @@ You need to specify multi option commands in the form of a json string.
Set environment variables.
-This option allows arbitrary environment variables that are available for the process to be launched inside of the container. If an environment variable is specified without a value, Podman will check the host environment for a value and set the variable only if it is set on the host. If an environment variable ending in __*__ is specified, Podman will search the host environment for variables starting with the prefix and will add those variables to the container. If an environment variable with a trailing ***** is specified, then a value must be supplied.
+This option allows arbitrary environment variables that are available for the process to be launched inside of the container. If an environment variable is specified without a value, Podman will check the host environment for a value and set the variable only if it is set on the host. If an environment variable ending in __*__ is specified, Podman will search the host environment for variables starting with the prefix and will add those variables to the container. If an environment variable with a trailing __*__ is specified, then a value must be supplied.
See [**Environment**](#environment) note below for precedence and examples.