mirror of https://github.com/minio/minio.git
				
				
				
			
		
			
				
	
	
		
			130 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			130 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
| version: '3.7'
 | |
| 
 | |
| services:
 | |
|   minio1:
 | |
|     image: minio/minio:RELEASE.2021-03-12T00-00-47Z
 | |
|     hostname: minio1
 | |
|     volumes:
 | |
|       - minio1-data:/export
 | |
|     ports:
 | |
|       - "9001:9000"
 | |
|     networks:
 | |
|       - minio_distributed
 | |
|     deploy:
 | |
|       restart_policy:
 | |
|         delay: 10s
 | |
|         max_attempts: 10
 | |
|         window: 60s
 | |
|       placement:
 | |
|         constraints:
 | |
|           - node.labels.minio1==true
 | |
|     command: server http://minio{1...4}/export
 | |
|     secrets:
 | |
|       - secret_key
 | |
|       - access_key
 | |
|     healthcheck:
 | |
|       test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
 | |
|       interval: 30s
 | |
|       timeout: 20s
 | |
|       retries: 3
 | |
| 
 | |
|   minio2:
 | |
|     image: minio/minio:RELEASE.2021-03-12T00-00-47Z
 | |
|     hostname: minio2
 | |
|     volumes:
 | |
|       - minio2-data:/export
 | |
|     ports:
 | |
|       - "9002:9000"
 | |
|     networks:
 | |
|       - minio_distributed
 | |
|     deploy:
 | |
|       restart_policy:
 | |
|         delay: 10s
 | |
|         max_attempts: 10
 | |
|         window: 60s
 | |
|       placement:
 | |
|         constraints:
 | |
|           - node.labels.minio2==true
 | |
|     command: server http://minio{1...4}/export
 | |
|     secrets:
 | |
|       - secret_key
 | |
|       - access_key
 | |
|     healthcheck:
 | |
|       test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
 | |
|       interval: 30s
 | |
|       timeout: 20s
 | |
|       retries: 3
 | |
| 
 | |
|   minio3:
 | |
|     image: minio/minio:RELEASE.2021-03-12T00-00-47Z
 | |
|     hostname: minio3
 | |
|     volumes:
 | |
|       - minio3-data:/export
 | |
|     ports:
 | |
|       - "9003:9000"
 | |
|     networks:
 | |
|       - minio_distributed
 | |
|     deploy:
 | |
|       restart_policy:
 | |
|         delay: 10s
 | |
|         max_attempts: 10
 | |
|         window: 60s
 | |
|       placement:
 | |
|         constraints:
 | |
|           - node.labels.minio3==true
 | |
|     command: server http://minio{1...4}/export
 | |
|     secrets:
 | |
|       - secret_key
 | |
|       - access_key
 | |
|     healthcheck:
 | |
|       test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
 | |
|       interval: 30s
 | |
|       timeout: 20s
 | |
|       retries: 3
 | |
| 
 | |
|   minio4:
 | |
|     image: minio/minio:RELEASE.2021-03-12T00-00-47Z
 | |
|     hostname: minio4
 | |
|     volumes:
 | |
|       - minio4-data:/export
 | |
|     ports:
 | |
|       - "9004:9000"
 | |
|     networks:
 | |
|       - minio_distributed
 | |
|     deploy:
 | |
|       restart_policy:
 | |
|         delay: 10s
 | |
|         max_attempts: 10
 | |
|         window: 60s
 | |
|       placement:
 | |
|         constraints:
 | |
|           - node.labels.minio4==true
 | |
|     command: server http://minio{1...4}/export
 | |
|     secrets:
 | |
|       - secret_key
 | |
|       - access_key
 | |
|     healthcheck:
 | |
|       test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
 | |
|       interval: 30s
 | |
|       timeout: 20s
 | |
|       retries: 3
 | |
| 
 | |
| volumes:
 | |
|   minio1-data:
 | |
| 
 | |
|   minio2-data:
 | |
| 
 | |
|   minio3-data:
 | |
| 
 | |
|   minio4-data:
 | |
| 
 | |
| networks:
 | |
|   minio_distributed:
 | |
|     driver: overlay
 | |
| 
 | |
| secrets:
 | |
|   secret_key:
 | |
|     external: true
 | |
|   access_key:
 | |
|     external: true
 |