From e4da5096ba47477597925793e5d5b666c9652c09 Mon Sep 17 00:00:00 2001 From: Jakub Guzik Date: Sun, 7 Mar 2021 11:59:30 +0100 Subject: separate file with mount consts in libpod/define Signed-off-by: Jakub Guzik --- libpod/define/mount.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 libpod/define/mount.go (limited to 'libpod/define') 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" +) -- cgit v1.2.3-54-g00ecf