mirror of https://github.com/containers/podman.git
				
				
				
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			542 B
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			542 B
		
	
	
	
		
			Go
		
	
	
	
package integration
 | 
						|
 | 
						|
var (
 | 
						|
	STORAGE_FS               = "overlay"
 | 
						|
	STORAGE_OPTIONS          = "--storage-driver overlay"
 | 
						|
	ROOTLESS_STORAGE_FS      = "vfs"
 | 
						|
	ROOTLESS_STORAGE_OPTIONS = "--storage-driver vfs"
 | 
						|
	CACHE_IMAGES             = []string{ALPINE, BB, fedoraMinimal, nginx, redis, infra, labels}
 | 
						|
	nginx                    = "quay.io/libpod/alpine_nginx-ppc64le:latest"
 | 
						|
	BB_GLIBC                 = "docker.io/ppc64le/busybox:glibc"
 | 
						|
	labels                   = "quay.io/libpod/alpine_labels-ppc64le:latest"
 | 
						|
	registry                 string
 | 
						|
)
 |