summaryrefslogtreecommitdiff
path: root/libpod/volume_internal.go
blob: 0de8a235063f15897ead0e68b3fd6dbdf1777f39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package libpod

import (
	"os"
	"path/filepath"
)

// Creates a new volume
func newVolume(runtime *Runtime) (*Volume, error) {
	volume := new(Volume)
	volume.config = new(VolumeConfig)
	volume.runtime = runtime
	volume.config.Labels = make(map[string]string)
	volume.config.Options = make(map[string]string)

	return volume, nil
}

// teardownStorage deletes the volume from volumePath
func (v *Volume) teardownStorage() error {
	if !v.valid {
		return ErrNoSuchVolume
	}
	return os.RemoveAll(filepath.Join(v.runtime.config.VolumePath, v.Name()))
}