2015-06-12 09:25:32 -04:00
|
|
|
<!--[metadata]>
|
|
|
|
+++
|
|
|
|
title = "volume inspect"
|
|
|
|
description = "The volume inspect command description and usage"
|
|
|
|
keywords = ["volume, inspect"]
|
|
|
|
[menu.main]
|
|
|
|
parent = "smn_cli"
|
|
|
|
+++
|
|
|
|
<![end-metadata]-->
|
|
|
|
|
|
|
|
# volume inspect
|
|
|
|
|
2015-09-08 09:02:16 -07:00
|
|
|
Usage: docker volume inspect [OPTIONS] VOLUME [VOLUME...]
|
2015-06-12 09:25:32 -04:00
|
|
|
|
2015-09-08 09:02:16 -07:00
|
|
|
Inspect one or more volumes
|
2015-06-12 09:25:32 -04:00
|
|
|
|
2015-10-03 17:56:41 +02:00
|
|
|
-f, --format= Format the output using the given go template.
|
2015-12-23 06:37:06 -08:00
|
|
|
--help Print usage
|
2015-06-12 09:25:32 -04:00
|
|
|
|
|
|
|
Returns information about a volume. By default, this command renders all results
|
2015-11-18 16:02:24 +01:00
|
|
|
in a JSON array. You can specify an alternate format to execute a
|
|
|
|
given template for each result. Go's
|
2015-06-12 09:25:32 -04:00
|
|
|
[text/template](http://golang.org/pkg/text/template/) package describes all the
|
|
|
|
details of the format.
|
|
|
|
|
|
|
|
Example output:
|
|
|
|
|
|
|
|
$ docker volume create
|
|
|
|
85bffb0677236974f93955d8ecc4df55ef5070117b0e53333cc1b443777be24d
|
|
|
|
$ docker volume inspect 85bffb0677236974f93955d8ecc4df55ef5070117b0e53333cc1b443777be24d
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"Name": "85bffb0677236974f93955d8ecc4df55ef5070117b0e53333cc1b443777be24d",
|
|
|
|
"Driver": "local",
|
|
|
|
"Mountpoint": "/var/lib/docker/volumes/85bffb0677236974f93955d8ecc4df55ef5070117b0e53333cc1b443777be24d/_data"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
$ docker volume inspect --format '{{ .Mountpoint }}' 85bffb0677236974f93955d8ecc4df55ef5070117b0e53333cc1b443777be24d
|
2015-11-09 02:17:50 -06:00
|
|
|
/var/lib/docker/volumes/85bffb0677236974f93955d8ecc4df55ef5070117b0e53333cc1b443777be24d/_data
|