mirror of
https://github.com/containers/podman.git
synced 2025-08-06 03:19:52 +08:00

Somewhere in the CIv2 migration we lost the man page vs --help cross-checker. Add it back, by adding it into the man-page-check Makefile target; this is part of 'make validate', which is run in CI even on CI:DOCS PRs. As happens when CI doesn't run, things broke. Man pages got out of sync with --help. This PR: 1) Fixes hack/xref-helpmsgs-manpages to deal with the new "Options" (instead of "Flags") form of podman help. #8034 did part of that, but one of my review comments was accidentally left out. 2) Fixes hack/xref-helpmsgs-manpages to deal with the new option syntax in man pages, post- #8292, in which each option is preceded by four hashes so as to make them HTML <h4> elements with named anchors. 3) Fixes man pages that #8292 accidentally missed. 4) Adds man page entries for two flags that got added to podman but not documented (pod create --network-alias, play kube --log-driver) Fixes: #8296 Signed-off-by: Ed Santiago <santiago@redhat.com>
942 B
942 B
% podman-volume-ls(1)
NAME
podman-volume-ls - List all the available volumes
SYNOPSIS
podman volume ls [options]
DESCRIPTION
Lists all the volumes that exist. The output can be filtered using the --filter flag and can be formatted to either JSON or a Go template using the --format flag. Use the --quiet flag to print only the volume names.
OPTIONS
-f, --filter=filter
Filter volume output.
--format=format
Format volume output using Go template.
--help
Print usage statement.
-q, --quiet
Print volume output in quiet mode. Only print the volume names.
EXAMPLES
$ podman volume ls
$ podman volume ls --format json
$ podman volume ls --format "{{.Driver}} {{.Scope}}"
$ podman volume ls --filter name=foo,label=blue
SEE ALSO
podman-volume(1)
HISTORY
November 2018, Originally compiled by Urvashi Mohnani umohnani@redhat.com