· 7 years ago · Jul 20, 2018, 06:06 PM
1version: '3.1'
2
3services:
4 minio1:
5 image: minio/minio:RELEASE.2018-07-13T00-09-07Z
6 volumes:
7 - minio1-data:/export
8 ports:
9 - "9001:9000"
10 networks:
11 - minio_distributed
12 deploy:
13 restart_policy:
14 delay: 10s
15 max_attempts: 10
16 window: 60s
17 command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
18 secrets:
19 - secret_key
20 - access_key
21
22 minio2:
23 image: minio/minio:RELEASE.2018-07-13T00-09-07Z
24 volumes:
25 - minio2-data:/export
26 ports:
27 - "9002:9000"
28 networks:
29 - minio_distributed
30 deploy:
31 restart_policy:
32 delay: 10s
33 max_attempts: 10
34 window: 60s
35 command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
36 secrets:
37 - secret_key
38 - access_key
39
40 minio3:
41 image: minio/minio:RELEASE.2018-07-13T00-09-07Z
42 volumes:
43 - minio3-data:/export
44 ports:
45 - "9003:9000"
46 networks:
47 - minio_distributed
48 deploy:
49 restart_policy:
50 delay: 10s
51 max_attempts: 10
52 window: 60s
53 command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
54 secrets:
55 - secret_key
56 - access_key
57
58 minio4:
59 image: minio/minio:RELEASE.2018-07-13T00-09-07Z
60 volumes:
61 - minio4-data:/export
62 ports:
63 - "9004:9000"
64 networks:
65 - minio_distributed
66 deploy:
67 restart_policy:
68 delay: 10s
69 max_attempts: 10
70 window: 60s
71 command: server http://minio1/export http://minio2/export http://minio3/export http://minio4/export
72 secrets:
73 - secret_key
74 - access_key
75
76volumes:
77 minio1-data:
78
79 minio2-data:
80
81 minio3-data:
82
83 minio4-data:
84
85networks:
86 minio_distributed:
87 driver: overlay
88
89secrets:
90 secret_key:
91 external: true
92 access_key:
93 external: true