diff options
author | baude <bbaude@redhat.com> | 2019-02-10 19:34:36 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-11 20:14:50 -0600 |
commit | 3101364a3cf00a2b2562bc2510262c3ee992bbab (patch) | |
tree | b4515ae1d155cbdca401f1f7be56cbb62476ec6d /cmd/podman/commands_remoteclient.go | |
parent | ea20ead35b69b1259f2ff3b00f558c473a921b95 (diff) | |
download | podman-3101364a3cf00a2b2562bc2510262c3ee992bbab.tar.gz podman-3101364a3cf00a2b2562bc2510262c3ee992bbab.tar.bz2 podman-3101364a3cf00a2b2562bc2510262c3ee992bbab.zip |
podman-remote volume rm
add the ability to remove/delete volumes with the podman remote
client.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/commands_remoteclient.go')
-rw-r--r-- | cmd/podman/commands_remoteclient.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/commands_remoteclient.go b/cmd/podman/commands_remoteclient.go index e1f68405e..a656d5a29 100644 --- a/cmd/podman/commands_remoteclient.go +++ b/cmd/podman/commands_remoteclient.go @@ -35,6 +35,7 @@ func getPodSubCommands() []*cobra.Command { func getVolumeSubCommands() []*cobra.Command { return []*cobra.Command{ _volumeCreateCommand, + _volumeRmCommand, } } |