github.com/AbhinandanKurakure/podman/v3@v3.4.10/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  )