blob: 1b0d019c831a54e41c03a0c95634de378519b9a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package define
const (
// TypeBind is the type for mounting host dir
TypeBind = "bind"
// TypeVolume is the type for named volumes
TypeVolume = "volume"
// TypeTmpfs is the type for mounting tmpfs
TypeTmpfs = "tmpfs"
// TypeDevpts is the type for creating a devpts
TypeDevpts = "devpts"
)
|