diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/podman-create.1.md | 8 | ||||
-rw-r--r-- | docs/podman-run.1.md | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/docs/podman-create.1.md b/docs/podman-create.1.md index 7d2b62fb0..98141221b 100644 --- a/docs/podman-create.1.md +++ b/docs/podman-create.1.md @@ -217,6 +217,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*. 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*. |