forked from mtulio/redis-stack-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
54 lines (46 loc) · 973 Bytes
/
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
version: '2'
services:
insights:
image: redislabs/redisinsight
ports:
- "8001:8001"
volumes: []
#- redisinsight:/db
restart: on-failure
depends_on:
- graph
- search
- timeseries
- cache0
- cluster0-00
- cluster0-01
graph:
image: redislabs/redisgraph
ports:
- "6380:6379"
restart: on-failure
search:
image: redislabs/redisearch:latest
ports:
- "6381:6379"
restart: on-failure
timeseries:
image: redislabs/redistimeseries
ports:
- "6382:6379"
restart: on-failure
cache0:
image: redislabs/redis
ports:
- "6300:6379"
restart: on-failure
cluster0-00:
image: redislabs/redis
ports:
- "6390:6379"
restart: on-failure
cluster0-01:
image: redislabs/redis
ports:
- "6391:6379"
restart: on-failure