buildah/define/mount_unsupported.go

18 lines
306 B
Go

//go:build darwin || windows || netbsd
// +build darwin windows netbsd
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{""}
)