github.com/containers/podman/v4@v4.9.4/libpod/define/mount_freebsd.go (about) 1 //go:build freebsd 2 3 package define 4 5 const ( 6 // TypeBind is the type for mounting host dir 7 TypeBind = "nullfs" 8 ) 9 10 var ( 11 // Mount potions for bind 12 BindOptions = []string{} 13 )