mirror of
https://github.com/containers/podman.git
synced 2025-11-30 18:18:18 +08:00
15 lines
248 B
Go
15 lines
248 B
Go
//go:build freebsd
|
|
|
|
package define
|
|
|
|
const (
|
|
// TypeBind is the type for mounting host dir
|
|
TypeBind = "nullfs"
|
|
|
|
// TempDir is the default for storing temporary files
|
|
TempDir = "/var/tmp"
|
|
)
|
|
|
|
// Mount potions for bind
|
|
var BindOptions = []string{}
|