18 lines
		
	
	
		
			490 B
		
	
	
	
		
			Docker
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			490 B
		
	
	
	
		
			Docker
		
	
	
	
FROM plugins/base:multiarch
 | 
						|
 | 
						|
LABEL org.label-schema.version=latest
 | 
						|
LABEL org.label-schema.vcs-url="https://github.com/appleboy/gorush.git"
 | 
						|
LABEL org.label-schema.name="Gorush"
 | 
						|
LABEL org.label-schema.vendor="Bo-Yi Wu"
 | 
						|
LABEL org.label-schema.schema-version="1.0"
 | 
						|
LABEL maintainer="Bo-Yi Wu <appleboy.tw@gmail.com>"
 | 
						|
 | 
						|
ADD release/linux/amd64/gorush /bin/
 | 
						|
 | 
						|
EXPOSE 8088 9000
 | 
						|
 | 
						|
HEALTHCHECK --start-period=2s --interval=10s --timeout=5s \
 | 
						|
  CMD ["/bin/gorush", "--ping"]
 | 
						|
 | 
						|
ENTRYPOINT ["/bin/gorush"]
 |