-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (36 loc) · 984 Bytes
/
docker-compose.yml
File metadata and controls
36 lines (36 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version: '3.7'
services:
node1:
image: minio/minio:RELEASE.2020-02-07T23-28-16Z
environment:
- MINIO_ACCESS_KEY=access_key
- MINIO_SECRET_KEY=secret_key
ports:
- "9000:9000"
volumes:
- data/node1:/data
command: server http://node{1...4}/data
node2:
image: minio/minio:RELEASE.2020-02-07T23-28-16Z
environment:
- MINIO_ACCESS_KEY=access_key
- MINIO_SECRET_KEY=secret_key
volumes:
- data/node2:/data
command: server http://node{1...4}/data
node3:
image: minio/minio:RELEASE.2020-02-07T23-28-16Z
environment:
- MINIO_ACCESS_KEY=access_key
- MINIO_SECRET_KEY=secret_key
volumes:
- data/node3:/data
command: server http://node{1...4}/data
node4:
image: minio/minio:RELEASE.2020-02-07T23-28-16Z
environment:
- MINIO_ACCESS_KEY=access_key
- MINIO_SECRET_KEY=secret_key
volumes:
- data/node4:/data
command: server http://node{1...4}/data