15 lines
194 B
Go
15 lines
194 B
Go
|
|
//go:build linux
|
||
|
|
// +build linux
|
||
|
|
|
||
|
|
package define
|
||
|
|
|
||
|
|
const (
|
||
|
|
// TypeBind is the type for mounting host dir
|
||
|
|
TypeBind = "bind"
|
||
|
|
)
|
||
|
|
|
||
|
|
var (
|
||
|
|
// Mount potions for bind
|
||
|
|
BindOptions = []string{"bind"}
|
||
|
|
)
|