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.
		
		
		
		
		
			
		
			
				
					
					
						
							24 lines
						
					
					
						
							577 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							24 lines
						
					
					
						
							577 B
						
					
					
				
								FROM golang:latest
							 | 
						|
								RUN go get github.com/chrislusf/seaweedfs/weed
							 | 
						|
								
							 | 
						|
								# volume server gprc port
							 | 
						|
								EXPOSE 18080
							 | 
						|
								# volume server http port
							 | 
						|
								EXPOSE 8080
							 | 
						|
								# filer server gprc port
							 | 
						|
								EXPOSE 18888
							 | 
						|
								# filer server http port
							 | 
						|
								EXPOSE 8888
							 | 
						|
								# master server shared gprc+http port
							 | 
						|
								EXPOSE 9333
							 | 
						|
								# s3 server http port
							 | 
						|
								EXPOSE 8333
							 | 
						|
								
							 | 
						|
								VOLUME /data
							 | 
						|
								
							 | 
						|
								RUN mkdir -p /etc/seaweedfs
							 | 
						|
								RUN cp /go/src/github.com/chrislusf/seaweedfs/docker/filer.toml /etc/seaweedfs/filer.toml
							 | 
						|
								RUN cp /go/src/github.com/chrislusf/seaweedfs/docker/entrypoint.sh /entrypoint.sh
							 | 
						|
								RUN chmod +x /entrypoint.sh
							 | 
						|
								
							 | 
						|
								ENTRYPOINT ["/entrypoint.sh"]
							 |