github.com/containers/podman/v4@v4.9.4/libpod/define/mount_linux.go (about)

     1  //go:build linux
     2  
     3  package define
     4  
     5  const (
     6  	// TypeBind is the type for mounting host dir
     7  	TypeBind = "bind"
     8  )
     9  
    10  var (
    11  	// Mount potions for bind
    12  	BindOptions = []string{TypeBind}
    13  )