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.
		
		
		
		
		
			
		
			
				
					
					
						
							85 lines
						
					
					
						
							2.5 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							85 lines
						
					
					
						
							2.5 KiB
						
					
					
				| version: '3.9' | |
|  | |
| services: | |
|   master: | |
|     image: chrislusf/seaweedfs:local | |
|     ports: | |
|       - 9333:9333 | |
|       - 19333:19333 | |
|     command: "master -ip=master -volumeSizeLimitMB=100" | |
|   volume: | |
|     image: chrislusf/seaweedfs:local | |
|     ports: | |
|       - 8080:8080 | |
|       - 18080:18080 | |
|     command: "volume -mserver=master:9333 -port=8080 -ip=volume -max=0 -preStopSeconds=1" | |
|     depends_on: | |
|       - master | |
|   s3: | |
|     image: chrislusf/seaweedfs:local | |
|     ports: | |
|       - 8888:8888 | |
|       - 18888:18888 | |
|       - 8333:8333 | |
|     command: '-v 9 filer -master="master:9333" -s3 -s3.config=/etc/seaweedfs/s3.json -s3.port=8333' | |
|     volumes: | |
|       - ./s3.json:/etc/seaweedfs/s3.json | |
|     depends_on: | |
|       - master | |
|       - volume | |
|   minio: | |
|     image: minio/minio | |
|     ports: | |
|       - 9000:9000 | |
|     command: 'minio server /data' | |
|     environment: | |
|       MINIO_ACCESS_KEY: "some_access_key1" | |
|       MINIO_SECRET_KEY: "some_secret_key1" | |
|     depends_on: | |
|       - master | |
|   registry1: | |
|     image: registry:2 | |
|     environment: | |
|       REGISTRY_HTTP_ADDR: "0.0.0.0:5001" # seaweedfs s3 | |
|       REGISTRY_LOG_LEVEL: "debug" | |
|       REGISTRY_STORAGE: "s3" | |
|       REGISTRY_STORAGE_S3_REGION: "us-east-1" | |
|       REGISTRY_STORAGE_S3_REGIONENDPOINT: "http://s3:8333" | |
|       REGISTRY_STORAGE_S3_BUCKET: "registry" | |
|       REGISTRY_STORAGE_S3_ACCESSKEY: "some_access_key1" | |
|       REGISTRY_STORAGE_S3_SECRETKEY: "some_secret_key1" | |
|       REGISTRY_STORAGE_S3_V4AUTH: "true" | |
|       REGISTRY_STORAGE_S3_SECURE: "false" | |
|       REGISTRY_STORAGE_S3_SKIPVERIFY: "true" | |
|       REGISTRY_STORAGE_S3_ROOTDIRECTORY: "/" | |
|       REGISTRY_STORAGE_DELETE_ENABLED: "true" | |
|       REGISTRY_STORAGE_REDIRECT_DISABLE: "true" | |
|       REGISTRY_VALIDATION_DISABLED: "true" | |
|     ports: | |
|       - 5001:5001 | |
|     depends_on: | |
|       - s3 | |
|       - minio | |
|   registry2: | |
|     image: registry:2 | |
|     environment: | |
|       REGISTRY_HTTP_ADDR: "0.0.0.0:5002" # minio | |
|       REGISTRY_LOG_LEVEL: "debug" | |
|       REGISTRY_STORAGE: "s3" | |
|       REGISTRY_STORAGE_S3_REGION: "us-east-1" | |
|       REGISTRY_STORAGE_S3_REGIONENDPOINT: "http://minio:9000" | |
|       REGISTRY_STORAGE_S3_BUCKET: "registry" | |
|       REGISTRY_STORAGE_S3_ACCESSKEY: "some_access_key1" | |
|       REGISTRY_STORAGE_S3_SECRETKEY: "some_secret_key1" | |
|       REGISTRY_STORAGE_S3_V4AUTH: "true" | |
|       REGISTRY_STORAGE_S3_SECURE: "false" | |
|       REGISTRY_STORAGE_S3_SKIPVERIFY: "true" | |
|       REGISTRY_STORAGE_S3_ROOTDIRECTORY: "/" | |
|       REGISTRY_STORAGE_DELETE_ENABLED: "true" | |
|       REGISTRY_STORAGE_REDIRECT_DISABLE: "true" | |
|       REGISTRY_VALIDATION_DISABLED: "true" | |
|     ports: | |
|       - 5002:5002 | |
|     depends_on: | |
|       - s3 | |
|       - minio |