diff options
author | xcffl <xcffl@outlook.com> | 2019-09-07 19:23:10 +0800 |
---|---|---|
committer | xcffl <xcffl@outlook.com> | 2019-09-07 20:16:42 +0800 |
commit | 3d240bd7953c7c666c4a42f230cf40f1095abbee (patch) | |
tree | 770af8fd6b74e7966fe81a6be04a569ec43829d9 /docs/podman-build.1.md | |
parent | cd7a1ac194472542301596ef776be5f8563eb0c1 (diff) | |
download | podman-3d240bd7953c7c666c4a42f230cf40f1095abbee.tar.gz podman-3d240bd7953c7c666c4a42f230cf40f1095abbee.tar.bz2 podman-3d240bd7953c7c666c4a42f230cf40f1095abbee.zip |
Replace "podman" with "Podman"
Signed-off-by: xcffl <xcffl@outlook.com>
Diffstat (limited to 'docs/podman-build.1.md')
-rw-r--r-- | docs/podman-build.1.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/podman-build.1.md b/docs/podman-build.1.md index 74c07ab73..142dc4827 100644 --- a/docs/podman-build.1.md +++ b/docs/podman-build.1.md @@ -521,8 +521,8 @@ process. **--volume**, **-v**[=*[HOST-DIR:CONTAINER-DIR[:OPTIONS]]*] - Create a bind mount. If you specify, ` -v /HOST-DIR:/CONTAINER-DIR`, podman - bind mounts `/HOST-DIR` in the host to `/CONTAINER-DIR` in the podman + Create a bind mount. If you specify, ` -v /HOST-DIR:/CONTAINER-DIR`, Podman + bind mounts `/HOST-DIR` in the host to `/CONTAINER-DIR` in the Podman container. The `OPTIONS` are a comma delimited list and can be: * [rw|ro] @@ -547,14 +547,14 @@ See examples. Labeling systems like SELinux require that proper labels are placed on volume content mounted into a container. Without a label, the security system might prevent the processes running inside the container from using the content. By -default, podman does not change the labels set by the OS. +default, Podman does not change the labels set by the OS. To change a label in the container context, you can add either of two suffixes -`:z` or `:Z` to the volume mount. These suffixes tell podman to relabel file -objects on the shared volumes. The `z` option tells podman that two containers -share the volume content. As a result, podman labels the content with a shared +`:z` or `:Z` to the volume mount. These suffixes tell Podman to relabel file +objects on the shared volumes. The `z` option tells Podman that two containers +share the volume content. As a result, Podman labels the content with a shared content label. Shared volume labels allow all containers to read/write content. -The `Z` option tells podman to label the content with a private unshared label. +The `Z` option tells Podman to label the content with a private unshared label. Only the current container can use a private volume. `Overlay Volume Mounts` |