Files
podman/vendor/github.com/containers/buildah/define/mount_unsupported.go
2022-11-22 08:53:59 -05:00

18 lines
289 B
Go

//go:build darwin || windows
// +build darwin windows
package define
const (
// TypeBind is the type for mounting host dir
TypeBind = "bind"
// TempDir is the default for storing temporary files
TempDir = "/var/tmp"
)
var (
// Mount potions for bind
BindOptions = []string{""}
)