github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/libpod/define/mount.go (about)

     1  package define
     2  
     3  const (
     4  	// TypeBind is the type for mounting host dir
     5  	TypeBind = "bind"
     6  	// TypeVolume is the type for named volumes
     7  	TypeVolume = "volume"
     8  	// TypeTmpfs is the type for mounting tmpfs
     9  	TypeTmpfs = "tmpfs"
    10  	// TypeDevpts is the type for creating a devpts
    11  	TypeDevpts = "devpts"
    12  )