summaryrefslogtreecommitdiff
path: root/libpod/define/mount.go
blob: db444fd834014730c03c9661e6659ffc2b70e27a (plain)
1
2
3
4
5
6
7
8
9
10
package define

const (
	// 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"
)