podman-build/libpod/define/mount_linux.go
2025-10-11 12:30:35 +09:00

14 lines
180 B
Go

//go:build linux
package define
const (
// TypeBind is the type for mounting host dir
TypeBind = "bind"
)
var (
// Mount potions for bind
BindOptions = []string{TypeBind}
)