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.
		
		
		
		
		
			
		
			
				
					
					
						
							35 lines
						
					
					
						
							699 B
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							35 lines
						
					
					
						
							699 B
						
					
					
				| version: '2' | |
|  | |
| services: | |
|   master: | |
|     image: chrislusf/seaweedfs:local | |
|     ports: | |
|       - 9333:9333 | |
|       - 19333:19333 | |
|     command: "master -ip=master" | |
|   volume: | |
|     image: chrislusf/seaweedfs:local | |
|     ports: | |
|       - 8080:8080 | |
|       - 18080:18080 | |
|     command: "volume -mserver=master:9333 -port=8080 -ip=volume" | |
|     depends_on: | |
|       - master | |
|   filer: | |
|     image: chrislusf/seaweedfs:local | |
|     ports: | |
|       - 8888:8888 | |
|       - 18888:18888 | |
|     command: 'filer -master="master:9333"' | |
|     depends_on: | |
|       - master | |
|       - volume | |
|   s3: | |
|     image: chrislusf/seaweedfs:local | |
|     ports: | |
|       - 8333:8333 | |
|     command: 's3 -filer="filer:8888"' | |
|     depends_on: | |
|       - master | |
|       - volume | |
|       - filer
 |