-
Notifications
You must be signed in to change notification settings - Fork 17
/
docker-compose.yml
72 lines (63 loc) · 1.35 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
66
67
68
69
70
71
72
version: "3.7"
services:
minio:
image: minio/minio:RELEASE.2022-05-19T18-20-59Z.fips
ports:
- "9000:9000"
volumes:
- ./minio/data:/data
environment:
- MINIO_ACCESS_KEY=TESTKEY
- MINIO_SECRET_KEY=TESTSECRET
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 35s
timeout: 20s
retries: 3
command: server --compat /data
mongo:
image: mongo
ports:
- "27017:27017"
mongoclient:
image: mongoclient/mongoclient
ports:
- "3000:3000"
localstack:
image: localstack/localstack:0.11.1
ports:
- '4569:4569'
environment:
- SERVICES=dynamodb
elasticmq:
image: softwaremill/elasticmq-native:1.0.0
ports:
- '9324:9324'
redis:
image: redis
ports:
- 6379:6379
redisCluster:
restart: always
image: grokzen/redis-cluster:6.0.5
ports:
- "7000:7000"
- "7001:7001"
- "7002:7002"
- "7003:7003"
- "7004:7004"
- "7005:7005"
environment:
- STANDALONE=true
- IP=0.0.0.0
elasticsearch:
image: elasticsearch:7.10.1
environment:
discovery.type: single-node
ports:
- 9200:9200
healthcheck:
test: [ "CMD", "curl", "-f", "http://localhost:9200" ]
interval: 30s
timeout: 10s
retries: 5