summaryrefslogtreecommitdiff
path: root/libpod
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-03-07 14:13:51 -0500
committerGitHub <noreply@github.com>2021-03-07 14:13:51 -0500
commit4174b06a4b45b94cdd35a1f4b4d142266cd9cb78 (patch)
tree061f599c0a2475d52fc7521097f1d73ba1caa621 /libpod
parenta9fcd9d7602ce59a704884c6840e27666fea20d1 (diff)
parent1a33b764893cec16d9648ee008d7c41cc9482106 (diff)
downloadpodman-4174b06a4b45b94cdd35a1f4b4d142266cd9cb78.tar.gz
podman-4174b06a4b45b94cdd35a1f4b4d142266cd9cb78.tar.bz2
podman-4174b06a4b45b94cdd35a1f4b4d142266cd9cb78.zip
Merge pull request #9648 from jmguzik/unify-mount-consts
[NO TESTS NEEDED] Cleanup/unify mount consts
Diffstat (limited to 'libpod')
-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"
+)