From a5abbdf1f692d1425a5a6a52776cd4ae9108c5b9 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Sat, 18 Mar 2023 06:32:34 -0400 Subject: [PATCH] Fix option --opts -> --opt Fix typo in podman volume create man page. Signed-off-by: Daniel J Walsh --- docs/source/markdown/podman-volume-create.1.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/markdown/podman-volume-create.1.md b/docs/source/markdown/podman-volume-create.1.md index 391e671bd9..d637a12759 100644 --- a/docs/source/markdown/podman-volume-create.1.md +++ b/docs/source/markdown/podman-volume-create.1.md @@ -57,9 +57,9 @@ options (also `-o`) passed to **mount(8)** with the following exceptions: - The `o` option supports `uid` and `gid` options to set the UID and GID of the created volume that are not normally supported by **mount(8)**. - The `o` option supports the `size` option to set the maximum size of the created volume, the `inodes` option to set the maximum number of inodes for the volume and `noquota` to completely disable quota support even for tracking of disk usage. Currently these flags are only supported on "xfs" file system mounted with the `prjquota` flag described in the **xfs_quota(8)** man page. - The `o` option supports using volume options other than the UID/GID options with the **local** driver and requires root privileges. - - The `o` options supports the `timeout` option which allows users to set a driver specific timeout in seconds before volume creation fails. For example, **--opts=o=timeout=10** sets a driver timeout of 10 seconds. + - The `o` options supports the `timeout` option which allows users to set a driver specific timeout in seconds before volume creation fails. For example, **--opt=o=timeout=10** sets a driver timeout of 10 seconds. -***Note*** Do not confuse the `--opts,-o` create option with the `-o` mount option. For example, with `podman volume create`, use `-o=o=uid=1000` *not* `-o=uid=1000`. +***Note*** Do not confuse the `--opt,-o` create option with the `-o` mount option. For example, with `podman volume create`, use `-o=o=uid=1000` *not* `-o=uid=1000`. For the **image** driver, the only supported option is `image`, which specifies the image the volume is based on. This option is mandatory when using the **image** driver.