diff options
author | baude <bbaude@redhat.com> | 2019-02-11 12:47:47 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-13 12:43:51 -0600 |
commit | 4f60f79a27012220afdbcf8f2f4bb4622ca8c176 (patch) | |
tree | 5a0a43a03a17ad51678695a9d65270725b0b7893 /cmd/podman/commands_remoteclient.go | |
parent | 8a16f83b0a13ab9de1cc905a3ff1132c75739995 (diff) | |
download | podman-4f60f79a27012220afdbcf8f2f4bb4622ca8c176.tar.gz podman-4f60f79a27012220afdbcf8f2f4bb4622ca8c176.tar.bz2 podman-4f60f79a27012220afdbcf8f2f4bb4622ca8c176.zip |
podman-remote volume inspect|ls
add the ability to list and inspect volumes using the remote
client and varlink
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/commands_remoteclient.go')
-rw-r--r-- | cmd/podman/commands_remoteclient.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/podman/commands_remoteclient.go b/cmd/podman/commands_remoteclient.go index a656d5a29..7bdba1c19 100644 --- a/cmd/podman/commands_remoteclient.go +++ b/cmd/podman/commands_remoteclient.go @@ -36,6 +36,8 @@ func getVolumeSubCommands() []*cobra.Command { return []*cobra.Command{ _volumeCreateCommand, _volumeRmCommand, + _volumeLsCommand, + _volumeInspectCommand, } } |