diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-08-03 20:29:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 20:29:02 +0000 |
commit | 549974d97e9c5f1adb1158d1a523777ea722bf65 (patch) | |
tree | 21516826abc91d9a62598096f14e0c0a4182f313 /docs/source/markdown/options/image-volume.md | |
parent | 0f002c1600958948357f1eddb8e31f9240099335 (diff) | |
parent | 56039cffd7923d682bd620e5a5a974aabc94dd1b (diff) | |
download | podman-549974d97e9c5f1adb1158d1a523777ea722bf65.tar.gz podman-549974d97e9c5f1adb1158d1a523777ea722bf65.tar.bz2 podman-549974d97e9c5f1adb1158d1a523777ea722bf65.zip |
Merge pull request #15174 from edsantiago/docs_dedup_phase1
[CI:DOCS] Refactor common options in man pages
Diffstat (limited to 'docs/source/markdown/options/image-volume.md')
-rw-r--r-- | docs/source/markdown/options/image-volume.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/source/markdown/options/image-volume.md b/docs/source/markdown/options/image-volume.md new file mode 100644 index 000000000..2a549ef3c --- /dev/null +++ b/docs/source/markdown/options/image-volume.md @@ -0,0 +1,8 @@ +#### **--image-volume**=**bind** | *tmpfs* | *ignore* + +Tells Podman how to handle the builtin image volumes. Default is **bind**. + +- **bind**: An anonymous named volume will be created and mounted into the container. +- **tmpfs**: The volume is mounted onto the container as a tmpfs, which allows the users to create +content that disappears when the container is stopped. +- **ignore**: All volumes are just ignored and no action is taken. |