mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 01:50:50 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			298 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			298 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| 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"
 | |
| )
 | 
