From 52df1fa7e054d577e8416d1d46db1741ad324d4a Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Thu, 14 Feb 2019 13:21:52 -0500 Subject: Fix volume handling in podman iFix builtin volumes to work with podman volume Currently builtin volumes are not recored in podman volumes when they are created automatically. This patch fixes this. Remove container volumes when requested Currently the --volume option on podman remove does nothing. This will implement the changes needed to remove the volumes if the user requests it. When removing a volume make sure that no container uses the volume. Signed-off-by: Daniel J Walsh dwalsh@redhat.com Signed-off-by: Daniel J Walsh --- libpod/volume_internal.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'libpod/volume_internal.go') diff --git a/libpod/volume_internal.go b/libpod/volume_internal.go index 800e6d106..0de8a2350 100644 --- a/libpod/volume_internal.go +++ b/libpod/volume_internal.go @@ -5,10 +5,6 @@ import ( "path/filepath" ) -// VolumePath is the path under which all volumes that are created using the -// local driver will be created -// const VolumePath = "/var/lib/containers/storage/volumes" - // Creates a new volume func newVolume(runtime *Runtime) (*Volume, error) { volume := new(Volume) -- cgit v1.2.3-54-g00ecf