summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTomSweeneyRedHat <tsweeney@redhat.com>2019-10-11 13:55:19 -0400
committerTomSweeneyRedHat <tsweeney@redhat.com>2019-10-11 13:55:31 -0400
commitca80c605233674abf684a1886a8efc6d365c6c8a (patch)
tree0a62af9e37a3a463060c5ab3484bc1e1deec5187 /docs
parenteb6ca054fc93e5f863581e72923cb1e80fc5ab88 (diff)
downloadpodman-ca80c605233674abf684a1886a8efc6d365c6c8a.tar.gz
podman-ca80c605233674abf684a1886a8efc6d365c6c8a.tar.bz2
podman-ca80c605233674abf684a1886a8efc6d365c6c8a.zip
Touch up bad math in run man page
We'd an off by one error in the run man page spotted by @leorochael in Fixes: #4239 Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/podman-run.1.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/podman-run.1.md b/docs/podman-run.1.md
index e255119d7..b2baae07a 100644
--- a/docs/podman-run.1.md
+++ b/docs/podman-run.1.md
@@ -289,7 +289,7 @@ on the host system.
Run the container in a new user namespace using the supplied mapping. This option conflicts with the --userns and --subgidname flags.
This option can be passed several times to map different ranges. If calling Podman run as an unprivileged user, the user needs to have the right to use the mapping. See `subuid(5)`.
-The example maps gids 0-2000 in the container to the gids 30000-31999 on the host. `--gidmap=0:30000:2000`
+The example maps gids 0-1999 in the container to the gids 30000-31999 on the host. `--gidmap=0:30000:2000`
**--group-add**=*group*
@@ -800,7 +800,7 @@ standard input.
Run the container in a new user namespace using the supplied mapping. This option conflicts with the --userns and --subuidname flags.
This option can be passed several times to map different ranges. If calling Podman run as an unprivileged user, the user needs to have the right to use the mapping. See `subuid(5)`.
-The example maps uids 0-2000 in the container to the uids 30000-31999 on the host. `--uidmap=0:30000:2000`
+The example maps uids 0-1999 in the container to the uids 30000-31999 on the host. `--uidmap=0:30000:2000`
**--ulimit**=*option*