summaryrefslogtreecommitdiff
path: root/libpod/define
diff options
context:
space:
mode:
authorJakub Guzik <jakubmguzik@gmail.com>2021-03-07 11:59:30 +0100
committerJakub Guzik <jakubmguzik@gmail.com>2021-03-07 12:01:04 +0100
commite4da5096ba47477597925793e5d5b666c9652c09 (patch)
treee72d524c4e1a6a691d31b89954a1009048b64046 /libpod/define
parent2a7815726c74765ac5b097ba986b61687a63f77e (diff)
downloadpodman-e4da5096ba47477597925793e5d5b666c9652c09.tar.gz
podman-e4da5096ba47477597925793e5d5b666c9652c09.tar.bz2
podman-e4da5096ba47477597925793e5d5b666c9652c09.zip
separate file with mount consts in libpod/define
Signed-off-by: Jakub Guzik <jakubmguzik@gmail.com>
Diffstat (limited to 'libpod/define')
-rw-r--r--libpod/define/mount.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/libpod/define/mount.go b/libpod/define/mount.go
new file mode 100644
index 000000000..1b0d019c8
--- /dev/null
+++ b/libpod/define/mount.go
@@ -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"
+)