2017-05-22 14:30:30 -04:00
|
|
|
version: '3.1'
|
|
|
|
|
|
|
|
services:
|
|
|
|
minio1:
|
2018-09-25 17:39:03 -04:00
|
|
|
image: minio/minio:RELEASE.2018-09-25T21-34-43Z
|
2017-05-22 14:30:30 -04:00
|
|
|
volumes:
|
|
|
|
- minio1-data:/export
|
|
|
|
ports:
|
|
|
|
- "9001:9000"
|
|
|
|
networks:
|
|
|
|
- minio_distributed
|
|
|
|
deploy:
|
|
|
|
restart_policy:
|
|
|
|
delay: 10s
|
|
|
|
max_attempts: 10
|
|
|
|
window: 60s
|
|
|
|
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
|
|
|
|
secrets:
|
|
|
|
- secret_key
|
|
|
|
- access_key
|
|
|
|
|
|
|
|
minio2:
|
2018-09-25 17:39:03 -04:00
|
|
|
image: minio/minio:RELEASE.2018-09-25T21-34-43Z
|
2017-05-22 14:30:30 -04:00
|
|
|
volumes:
|
|
|
|
- minio2-data:/export
|
|
|
|
ports:
|
|
|
|
- "9002:9000"
|
|
|
|
networks:
|
|
|
|
- minio_distributed
|
|
|
|
deploy:
|
|
|
|
restart_policy:
|
|
|
|
delay: 10s
|
|
|
|
max_attempts: 10
|
|
|
|
window: 60s
|
|
|
|
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
|
|
|
|
secrets:
|
|
|
|
- secret_key
|
|
|
|
- access_key
|
|
|
|
|
|
|
|
minio3:
|
2018-09-25 17:39:03 -04:00
|
|
|
image: minio/minio:RELEASE.2018-09-25T21-34-43Z
|
2017-05-22 14:30:30 -04:00
|
|
|
volumes:
|
|
|
|
- minio3-data:/export
|
|
|
|
ports:
|
|
|
|
- "9003:9000"
|
|
|
|
networks:
|
|
|
|
- minio_distributed
|
|
|
|
deploy:
|
|
|
|
restart_policy:
|
|
|
|
delay: 10s
|
|
|
|
max_attempts: 10
|
|
|
|
window: 60s
|
|
|
|
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
|
|
|
|
secrets:
|
|
|
|
- secret_key
|
|
|
|
- access_key
|
|
|
|
|
|
|
|
minio4:
|
2018-09-25 17:39:03 -04:00
|
|
|
image: minio/minio:RELEASE.2018-09-25T21-34-43Z
|
2017-05-22 14:30:30 -04:00
|
|
|
volumes:
|
|
|
|
- minio4-data:/export
|
|
|
|
ports:
|
|
|
|
- "9004:9000"
|
|
|
|
networks:
|
|
|
|
- minio_distributed
|
|
|
|
deploy:
|
|
|
|
restart_policy:
|
|
|
|
delay: 10s
|
|
|
|
max_attempts: 10
|
|
|
|
window: 60s
|
|
|
|
command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
|
|
|
|
secrets:
|
|
|
|
- secret_key
|
|
|
|
- access_key
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
minio1-data:
|
|
|
|
|
|
|
|
minio2-data:
|
|
|
|
|
|
|
|
minio3-data:
|
|
|
|
|
|
|
|
minio4-data:
|
|
|
|
|
|
|
|
networks:
|
|
|
|
minio_distributed:
|
|
|
|
driver: overlay
|
|
|
|
|
|
|
|
secrets:
|
|
|
|
secret_key:
|
|
|
|
external: true
|
|
|
|
access_key:
|
|
|
|
external: true
|