mirror of
https://github.com/containers/podman.git
synced 2025-11-16 11:07:44 +08:00
18 lines
272 B
Go
18 lines
272 B
Go
//go:build freebsd
|
|
// +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"
|
|
)
|
|
|
|
var (
|
|
// Mount potions for bind
|
|
BindOptions = []string{}
|
|
)
|