mirror of
				https://github.com/minio/minio.git
				synced 2025-10-30 00:05:02 -04:00 
			
		
		
		
	Switch to alpine as a base image and install the ca certifcates to enable the minio docker container to run behind a SSL proxy, which will fix #1146
		
			
				
	
	
		
			9 lines
		
	
	
		
			197 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			197 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| # use "make dockerimage" to build
 | |
| FROM alpine:3.3
 | |
| RUN apk add --no-cache ca-certificates
 | |
| ADD minio.dockerimage /minio
 | |
| ADD export /export
 | |
| EXPOSE 9000
 | |
| ENTRYPOINT ["/minio"]
 | |
| CMD ["server", "/export"]
 |