diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-02-25 11:59:56 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-02-26 09:38:02 -0500 |
commit | 0d697573a6cd506f89c5631115f8322f1b6f84f3 (patch) | |
tree | 81387fcb10855a6d6eaa18e3bb12eff175dcea31 /libpod | |
parent | 5fcbe5baabfdbc250d5ca1122db133d2fcb7b79d (diff) | |
download | podman-0d697573a6cd506f89c5631115f8322f1b6f84f3.tar.gz podman-0d697573a6cd506f89c5631115f8322f1b6f84f3.tar.bz2 podman-0d697573a6cd506f89c5631115f8322f1b6f84f3.zip |
Add path for named volumes to `podman info`
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/info.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpod/info.go b/libpod/info.go index 191ce6810..62088b730 100644 --- a/libpod/info.go +++ b/libpod/info.go @@ -121,6 +121,7 @@ func (r *Runtime) storeInfo() (map[string]interface{}, error) { info["RunRoot"] = r.store.RunRoot() info["GraphDriverName"] = r.store.GraphDriverName() info["GraphOptions"] = r.store.GraphOptions() + info["VolumePath"] = r.config.VolumePath statusPairs, err := r.store.Status() if err != nil { return nil, err |