separate file with mount consts in libpod/define

Signed-off-by: Jakub Guzik <jakubmguzik@gmail.com>
This commit is contained in:
Jakub Guzik 2021-03-07 11:59:30 +01:00
parent 2a7815726c
commit e4da5096ba
1 changed files with 12 additions and 0 deletions

12
libpod/define/mount.go Normal file
View File

@ -0,0 +1,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"
)