diff options
author | Qi Wang <qiwan@redhat.com> | 2020-06-16 14:22:05 -0400 |
---|---|---|
committer | Qi Wang <qiwan@redhat.com> | 2020-06-19 09:40:13 -0400 |
commit | f61a7f25a8a6ec27fec069989f4b19b2ea19fc75 (patch) | |
tree | 6e6065b6a5456c66116ebc5c4bec7395df4bac5c /docs | |
parent | 5ec29f8d4e79500915ec79824d9eb21630205f3f (diff) | |
download | podman-f61a7f25a8a6ec27fec069989f4b19b2ea19fc75.tar.gz podman-f61a7f25a8a6ec27fec069989f4b19b2ea19fc75.tar.bz2 podman-f61a7f25a8a6ec27fec069989f4b19b2ea19fc75.zip |
Add --preservefds to podman run
Add --preservefds to podman run. close https://github.com/containers/libpod/issues/6458
Signed-off-by: Qi Wang <qiwan@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/markdown/podman-run.1.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/source/markdown/podman-run.1.md b/docs/source/markdown/podman-run.1.md index 7e91a06a3..88666d595 100644 --- a/docs/source/markdown/podman-run.1.md +++ b/docs/source/markdown/podman-run.1.md @@ -609,6 +609,10 @@ If a container is run with a pod, and the pod has an infra-container, the infra- Run container in an existing pod and read the pod's ID from the specified file. If a container is run within a pod, and the pod has an infra-container, the infra-container will be started before the container is. +**--preserve-fds**=*N* + +Pass down to the process N additional file descriptors (in addition to 0, 1, 2). The total FDs will be 3+N. + **--privileged**=**true**|**false** Give extended privileges to this container. The default is **false**. |