mirror of
				https://github.com/containers/podman.git
				synced 2025-11-01 02:42:11 +08:00 
			
		
		
		
	 f256f4f954
			
		
	
	f256f4f954
	
	
	
		
			
			Inspired by https://github.com/containers/podman/pull/19238 Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			180 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			180 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| //go:build linux
 | |
| 
 | |
| package define
 | |
| 
 | |
| const (
 | |
| 	// TypeBind is the type for mounting host dir
 | |
| 	TypeBind = "bind"
 | |
| )
 | |
| 
 | |
| var (
 | |
| 	// Mount potions for bind
 | |
| 	BindOptions = []string{TypeBind}
 | |
| )
 |