You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							36 lines
						
					
					
						
							737 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							36 lines
						
					
					
						
							737 B
						
					
					
				| FROM alpine AS final | |
| LABEL author="Chris Lu" | |
| COPY  ./weed /usr/bin/ | |
| COPY  ./weed_pub* /usr/bin/ | |
| COPY  ./weed_sub* /usr/bin/ | |
| RUN mkdir -p /etc/seaweedfs | |
| COPY ./filer.toml /etc/seaweedfs/filer.toml | |
| COPY ./entrypoint.sh /entrypoint.sh | |
| RUN apk add fuse # for weed mount | |
| RUN apk add curl # for health checks | |
| 
 | |
| # volume server grpc port | |
| EXPOSE 18080 | |
| # volume server http port | |
| EXPOSE 8080 | |
| # filer server grpc port | |
| EXPOSE 18888 | |
| # filer server http port | |
| EXPOSE 8888 | |
| # master server shared grpc port | |
| EXPOSE 19333 | |
| # master server shared http port | |
| EXPOSE 9333 | |
| # s3 server http port | |
| EXPOSE 8333 | |
| # webdav server http port | |
| EXPOSE 7333 | |
| 
 | |
| RUN mkdir -p /data/filerldb2 | |
| 
 | |
| VOLUME /data | |
| WORKDIR /data | |
| 
 | |
| RUN chmod +x /entrypoint.sh | |
| 
 | |
| ENTRYPOINT ["/entrypoint.sh"]
 |