forked from emotional-cities/crawable-catalogue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
66 lines (56 loc) · 1.37 KB
/
docker-compose.yml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
version: '3.7'
# Settings and configurations that are common for all containers
x-minio-common: &minio-common
image: quay.io/minio/minio:RELEASE.2022-03-08T22-28-51Z
#command: server --console-address ":9001" http://minio{1...4}/data1
command: server /data --console-address ":9001"
ports:
- "9000:9000"
- "9001:9001"
# expose:
# - "9000"
# - "9001"
# environment:
# MINIO_ROOT_USER: minioadmin
# MINIO_ROOT_PASSWORD: minioadmin
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 20s
retries: 3
# starts 4 docker containers running minio server instances.
# using nginx reverse proxy, load balancing, you can access
# it through port 9000.
services:
minio1:
<<: *minio-common
hostname: minio1
volumes:
- ./data:/data
#- data1-2:/data2
# minio2:
# <<: *minio-common
# hostname: minio2
# volumes:
# - ./data:/data
# minio3:
# <<: *minio-common
# hostname: minio3
# volumes:
# - ./data:/data
# minio4:
# <<: *minio-common
# hostname: minio4
# volumes:
# - ./data:/data
## By default this config uses default local driver,
## For custom volumes replace with volume driver configuration.
# volumes:
# data1-1:
# data1-2:
# data2-1:
# data2-2:
# data3-1:
# data3-2:
# data4-1:
# data4-2: