mirror of https://github.com/containers/podman.git
separate file with mount consts in libpod/define
Signed-off-by: Jakub Guzik <jakubmguzik@gmail.com>
This commit is contained in:
parent
2a7815726c
commit
e4da5096ba
|
@ -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"
|
||||||
|
)
|
Loading…
Reference in New Issue