mirror of
https://github.com/containers/podman.git
synced 2025-10-18 03:33:32 +08:00
volumes: Add support for exporting volumes to external tar
Adds support for transferring data between systems and backing up systems. Use cases: recover from disasters or move data between machines. Signed-off-by: flouthoc <flouthoc.git@gmail.com>
This commit is contained in:
@ -139,6 +139,17 @@ func (v *Volume) MountPoint() (string, error) {
|
||||
return v.mountPoint(), nil
|
||||
}
|
||||
|
||||
// MountCount returns the volume's mountcount on the host from state
|
||||
// Useful in determining if volume is using plugin or a filesystem mount and its mount
|
||||
func (v *Volume) MountCount() (uint, error) {
|
||||
v.lock.Lock()
|
||||
defer v.lock.Unlock()
|
||||
if err := v.update(); err != nil {
|
||||
return 0, err
|
||||
}
|
||||
return v.state.MountCount, nil
|
||||
}
|
||||
|
||||
// Internal-only helper for volume mountpoint
|
||||
func (v *Volume) mountPoint() string {
|
||||
if v.UsesVolumeDriver() {
|
||||
|
Reference in New Issue
Block a user