summaryrefslogtreecommitdiff
path: root/docs/podman-create.1.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/podman-create.1.md')
-rw-r--r--docs/podman-create.1.md8
1 files changed, 8 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*.