diff options
Diffstat (limited to 'docs/podman-run.1.md')
-rw-r--r-- | docs/podman-run.1.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/podman-run.1.md b/docs/podman-run.1.md index 53239422d..5e235514c 100644 --- a/docs/podman-run.1.md +++ b/docs/podman-run.1.md @@ -214,6 +214,14 @@ inside of the container. **--help** Print usage statement +**--image-volume**, **builtin-volume**=*bind*|*tmpfs*|*ignore* + Tells podman how to handle the builtin image volumes. The options are: 'bind', 'tmpfs', or 'ignore' (default 'bind') + bind: A directory is created inside the container state directory and bind mounted into + the container for the volumes. + tmpfs: The volume is mounted onto the container as a tmpfs, which allows the users to create + content that dissapears when the container is stopped. + ignore: All volumes are just ignored and no action is taken. + **-i**, **--interactive**=*true*|*false* Keep STDIN open even if not attached. The default is *false*. |