github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/docs/source/markdown/podman-volume-ls.1.md (about) 1 % podman-volume-ls(1) 2 3 ## NAME 4 podman\-volume\-ls - List all the available volumes 5 6 ## SYNOPSIS 7 **podman volume ls** [*options*] 8 9 ## DESCRIPTION 10 11 Lists all the volumes that exist. The output can be filtered using the **--filter** 12 flag and can be formatted to either JSON or a Go template using the **--format** 13 flag. Use the **--quiet** flag to print only the volume names. 14 15 ## OPTIONS 16 17 #### **--filter**=*filter*, **-f** 18 19 Filter volume output. 20 21 #### **--format**=*format* 22 23 Format volume output using Go template. 24 25 #### **--help** 26 27 Print usage statement. 28 29 #### **--quiet**, **-q** 30 31 Print volume output in quiet mode. Only print the volume names. 32 33 ## EXAMPLES 34 35 ``` 36 $ podman volume ls 37 38 $ podman volume ls --format json 39 40 $ podman volume ls --format "{{.Driver}} {{.Scope}}" 41 42 $ podman volume ls --filter name=foo,label=blue 43 44 $ podman volume ls --filter label=key=value 45 ``` 46 47 ## SEE ALSO 48 podman-volume(1) 49 50 ## HISTORY 51 November 2018, Originally compiled by Urvashi Mohnani <umohnani@redhat.com>