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