github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/docs/source/markdown/podman-volume-inspect.1.md (about) 1 % podman-volume-inspect(1) 2 3 ## NAME 4 podman\-volume\-inspect - Get detailed information on one or more volumes 5 6 ## SYNOPSIS 7 **podman volume inspect** [*options*] *volume* [...] 8 9 ## DESCRIPTION 10 11 Display detailed information on one or more volumes. The output can be formatted using 12 the **--format** flag and a Go template. To get detailed information about all the 13 existing volumes, use the **--all** flag. 14 Volumes can be queried individually by providing their full name or a unique partial name. 15 16 17 ## OPTIONS 18 19 #### **--all**, **-a** 20 21 Inspect all volumes. 22 23 #### **--format**=*format*, **-f** 24 25 Format volume output using Go template 26 27 #### **--help** 28 29 Print usage statement 30 31 32 ## EXAMPLES 33 34 ``` 35 $ podman volume inspect myvol 36 37 $ podman volume inspect --all 38 39 $ podman volume inspect --format "{{.Driver}} {{.Scope}}" myvol 40 ``` 41 42 ## SEE ALSO 43 **[podman(1)](podman.1.md)**, **[podman-volume(1)](podman-volume.1.md)**, **[podman-inspect(1)](podman-inspect.1.md)** 44 45 ## HISTORY 46 November 2018, Originally compiled by Urvashi Mohnani <umohnani@redhat.com>