Merge pull request #24431 from ntrrgc/2024-10-31-doc-interactive

doc: explain --interactive in more detail
This commit is contained in:
openshift-merge-bot[bot]
2024-11-01 22:31:26 +00:00
committed by GitHub
4 changed files with 8 additions and 4 deletions

View File

@ -4,4 +4,8 @@
####> are applicable to all of those.
#### **--interactive**, **-i**
When set to **true**, keep stdin open even if not attached. The default is **false**.
When set to **true**, make stdin available to the contained process. If **false**, the stdin of the contained process is empty and immediately closed.
If attached, stdin is piped to the contained process. If detached, reading stdin will block until later attached.
**Caveat:** Podman will consume input from stdin as soon as it becomes available, even if the contained process doesn't request it.