blob: 4f1ae3c6e542544c6b27c945419750d0585b8782 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package buildah
// Mount mounts a container's root filesystem in a location which can be
// accessed from the host, and returns the location.
func (b *Builder) Mount(label string) (string, error) {
mountpoint, err := b.store.Mount(b.ContainerID, label)
if err != nil {
return "", err
}
b.MountPoint = mountpoint
err = b.Save()
if err != nil {
return "", err
}
return mountpoint, nil
}
|