github.com/containers/podman/v4@v4.9.4/libpod/mounts_linux.go (about)

     1  //go:build !remote
     2  // +build !remote
     3  
     4  package libpod
     5  
     6  const (
     7  	// MountPrivate represents the private mount option.
     8  	MountPrivate = "private"
     9  	// MountRPrivate represents the rprivate mount option.
    10  	MountRPrivate = "rprivate"
    11  	// MountShared represents the shared mount option.
    12  	MountShared = "shared"
    13  	// MountRShared represents the rshared mount option.
    14  	MountRShared = "rshared"
    15  	// MountSlave represents the slave mount option.
    16  	MountSlave = "slave"
    17  	// MountRSlave represents the rslave mount option.
    18  	MountRSlave = "rslave"
    19  )