-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yaml
40 lines (40 loc) · 1.01 KB
/
docker-compose.yaml
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
version: '3'
services:
redisearch:
image: "redislabs/redisearch:1.6.7"
ports:
- "6379:6379"
redisgraphv2.0:
image: "redislabs/redisgraph:1.99.8"
ports:
- "6380:6379"
redistimeseries:
image: "redislabs/redistimeseries:1.2.0"
ports:
- "6382:6379"
beerloader-search:
build: ./beerloader-search/.
depends_on:
- redisearch
command: ['import.py', '--url', 'redis://redisearch:6379']
beerloader-graphv2.0:
build: ./beerloader-graph/.
depends_on:
- redisgraphv2.0
environment:
- REDIS_HOST=redisgraphv2.0
command: ['python', 'loader.py']
redisinsight:
image: "redislabs/redisinsight:redis-day-demo"
ports:
- "8001:8001"
dbloader:
build: ./dbloader/.
depends_on:
- redisinsight
- redisearch
- redisgraphv2.0
- redistimeseries
environment:
- APP_URL=http://redisinsight:8001
command: ['python', 'dbloader.py', "--db_urls=redisearch:6379;redistimeseries:6379;redisgraphv2.0:6379"]