summaryrefslogtreecommitdiff
path: root/docs/podman-create.1.md
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-09-17 13:02:23 +0200
committerGitHub <noreply@github.com>2019-09-17 13:02:23 +0200
commit799aa7022bcf4b8b76276f86ea633c960351fb93 (patch)
treef91f8ce4c22f679cb2de97a39d4aab5911896203 /docs/podman-create.1.md
parent2aa6771e787b46484245445b899cd2694aadbfc2 (diff)
parent405ef9bc5636b8940f93413231ed1e4299e3d4ac (diff)
downloadpodman-799aa7022bcf4b8b76276f86ea633c960351fb93.tar.gz
podman-799aa7022bcf4b8b76276f86ea633c960351fb93.tar.bz2
podman-799aa7022bcf4b8b76276f86ea633c960351fb93.zip
Merge pull request #4034 from rhatdan/relabel
Add 'relabel' to --mount options
Diffstat (limited to 'docs/podman-create.1.md')
-rw-r--r--docs/podman-create.1.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/podman-create.1.md b/docs/podman-create.1.md
index 996ef3863..c088f3e94 100644
--- a/docs/podman-create.1.md
+++ b/docs/podman-create.1.md
@@ -464,12 +464,16 @@ Tune a container's memory swappiness behavior. Accepts an integer between 0 and
Attach a filesystem mount to the container
-Current supported mount TYPES are bind, and tmpfs.
+Current supported mount TYPES are `bind`, `volume`, and `tmpfs`.
e.g.
type=bind,source=/path/on/host,destination=/path/in/container
+ type=bind,src=/path/on/host,dst=/path/in/container,relabel=shared
+
+ type=volume,source=vol1,destination=/path/in/container,ro=true
+
type=tmpfs,tmpfs-size=512M,destination=/path/in/container
Common Options:
@@ -483,8 +487,11 @@ Current supported mount TYPES are bind, and tmpfs.
Options specific to bind:
· bind-propagation: shared, slave, private, rshared, rslave, or rprivate(default). See also mount(2).
+
. bind-nonrecursive: do not setup a recursive bind mount. By default it is recursive.
+ . relabel: shared, private.
+
Options specific to tmpfs:
· tmpfs-size: Size of the tmpfs mount in bytes. Unlimited by default in Linux.