mirror of
				https://github.com/minio/minio.git
				synced 2025-10-29 15:55:00 -04:00 
			
		
		
		
	This PR allows 'minio update' to not only shows update banner but also allows for in-place upgrades. Updates are done safely by validating the downloaded sha256 of the binary. Fixes #4781
		
			
				
	
	
		
			29 lines
		
	
	
		
			741 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			741 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM alpine:3.6
 | |
| 
 | |
| MAINTAINER Minio Inc <dev@minio.io>
 | |
|  
 | |
| COPY dockerscripts/docker-entrypoint.sh dockerscripts/healthcheck.sh /usr/bin/
 | |
| 
 | |
| ENV MINIO_UPDATE off
 | |
| 
 | |
| RUN \
 | |
|      apk add --no-cache ca-certificates && \
 | |
|      apk add --no-cache --virtual .build-deps curl && \
 | |
|      echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf && \
 | |
|      curl https://dl.minio.io/server/minio/release/linux-amd64/minio > /usr/bin/minio && \
 | |
|      chmod +x /usr/bin/minio  && \
 | |
|      chmod +x /usr/bin/docker-entrypoint.sh && \
 | |
|      chmod +x /usr/bin/healthcheck.sh
 | |
| 
 | |
| EXPOSE 9000
 | |
| 
 | |
| ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
 | |
| 
 | |
| VOLUME ["/export"]
 | |
| 
 | |
| HEALTHCHECK --interval=30s --timeout=5s \
 | |
|     CMD /usr/bin/healthcheck.sh
 | |
| 
 | |
| CMD ["minio"]
 | |
| 
 |