blob: 7aa2e44886ce0ed82817d7fff7c3f088bb2579d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Package bits contains constants for configuring the container.
package bits
const (
// BindOptional skips nonexistent host paths.
BindOptional = 1 << iota
// BindWritable mounts filesystem read-write.
BindWritable
// BindDevice allows access to devices (special files) on this filesystem.
BindDevice
// BindEnsure attempts to create the host path if it does not exist.
BindEnsure
)
|