github.com/containers/podman/v4@v4.9.4/libpod/define/mount.go (about) 1 package define 2 3 const ( 4 // TypeDevpts is the type for creating a devpts 5 TypeDevpts = "devpts" 6 // TypeTmpfs is the type for mounting tmpfs 7 TypeTmpfs = "tmpfs" 8 // TypeRamfs is the type for mounting ramfs 9 TypeRamfs = "ramfs" 10 // TypeVolume is the type for named volumes 11 TypeVolume = "volume" 12 )