-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (30 loc) · 786 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (30 loc) · 786 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
version: "3.9"
services:
redis:
image: "redislabs/redismod:latest"
ports:
- 6379:6379
test:
build: .
environment:
- LD_LIBRARY_PATH=./lib
command: make test
network_mode: host
depends_on:
- redis
multi_info:
build: .
environment:
- LD_LIBRARY_PATH=./lib
command: bash -c "make -C examples/multiInfo && examples/multiInfo/multiInfo"
network_mode: host
depends_on:
- redis
single_info:
build: .
environment:
- LD_LIBRARY_PATH=./lib
command: bash -c "make -C examples/singleInfo && examples/singleInfo/singleInfo"
network_mode: host
depends_on:
- redis