diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/podman-export.1.md | 2 | ||||
-rw-r--r-- | docs/podman-umount.1.md | 17 | ||||
-rw-r--r-- | docs/podman-varlink.1.md | 10 | ||||
-rw-r--r-- | docs/podman-version.1.md | 2 |
4 files changed, 24 insertions, 7 deletions
diff --git a/docs/podman-export.1.md b/docs/podman-export.1.md index 6029beeb5..9adc1499b 100644 --- a/docs/podman-export.1.md +++ b/docs/podman-export.1.md @@ -1,7 +1,7 @@ % podman-export "1" ## NAME -podman export - Export container's filesystem contents as a tar archive +podman\-export - Export container's filesystem contents as a tar archive ## SYNOPSIS **podman export** [*options*] *container* diff --git a/docs/podman-umount.1.md b/docs/podman-umount.1.md index c13781dbf..70f30869a 100644 --- a/docs/podman-umount.1.md +++ b/docs/podman-umount.1.md @@ -7,13 +7,28 @@ podman\-umount - Unmount the specified working containers' root file system. **podman umount** *container* ... ## DESCRIPTION -Unmounts the specified containers' root file system. +Unmounts the specified containers' root file system, if no other processes +are using it. + +Container storage increments a mount counter each time a container is mounted. +When a container is unmounted, the mount counter is decremented and the +container's root filesystem is physically unmounted only when the mount +counter reaches zero indicating no other processes are using the mount. +An unmount can be forced with the --force flag. ## OPTIONS **--all, -a** All of the currently mounted containers will be unmounted. +**--force, -f** + +Force the unmounting of specified containers' root file system, even if other +processes have mounted it. + +Note: This could cause other processes that are using the file system to fail, +as the mount point could be removed without their knowledge. + ## EXAMPLE podman umount containerID diff --git a/docs/podman-varlink.1.md b/docs/podman-varlink.1.md index 1e63ddec3..d53457e22 100644 --- a/docs/podman-varlink.1.md +++ b/docs/podman-varlink.1.md @@ -26,13 +26,13 @@ second. A value of `0` means no timeout and the session will not expire. Run the podman varlink service manually and accept the default timeout. ``` -$ podman varlink unix:/run/podman/io.projectatomic.podman +# podman varlink unix:/run/podman/io.projectatomic.podman ``` Run the podman varlink service manually with a 5 second timeout. ``` -$ podman varlink --timeout 5000 unix:/run/podman/io.projectatomic.podman +# podman varlink --timeout 5000 unix:/run/podman/io.projectatomic.podman ``` ## CONFIGURATION @@ -40,9 +40,11 @@ $ podman varlink --timeout 5000 unix:/run/podman/io.projectatomic.podman Users of the podman varlink service should enable the _io.projectatomic.podman.socket_ and _io.projectatomic.podman.service_. This is the preferred method for running the varlink service. -You can do this via systemctl +You can do this via systemctl. -systemctl enable --now io.projectatomic.podman.socket +``` +# systemctl enable --now io.projectatomic.podman.socket +``` ## SEE ALSO podman(1), systemctl(1) diff --git a/docs/podman-version.1.md b/docs/podman-version.1.md index f1a1505d9..0c9b9ceed 100644 --- a/docs/podman-version.1.md +++ b/docs/podman-version.1.md @@ -7,7 +7,7 @@ podman\-version - Display the PODMAN Version Information **podman version** [*options*] ## DESCRIPTION -Shows the the following information: Version, Go Version, Git Commit, Build Time, +Shows the following information: Version, Go Version, Git Commit, Build Time, OS, and Architecture. ## OPTIONS |