diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-03-07 14:13:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-07 14:13:51 -0500 |
commit | 4174b06a4b45b94cdd35a1f4b4d142266cd9cb78 (patch) | |
tree | 061f599c0a2475d52fc7521097f1d73ba1caa621 /libpod | |
parent | a9fcd9d7602ce59a704884c6840e27666fea20d1 (diff) | |
parent | 1a33b764893cec16d9648ee008d7c41cc9482106 (diff) | |
download | podman-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.go | 12 |
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" +) |