-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-compose.yml
55 lines (48 loc) · 980 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
55
version: "3.3"
services:
generate:
image: python:3.7
volumes:
- ./:/project
- cache:/root/.cache/pip
working_dir: /project
entrypoint: rchain_grpc/generate.sh
environment:
RNODE_RELEASE: ${RNODE_RELEASE}
tests-37:
image: python:3.7
networks:
- tests
depends_on:
- tests-rchain
volumes:
- ./:/project
- cache:/root/.cache/pip
environment:
- RCHAIN_GRPC_HOST=tests-rchain
working_dir: /project
entrypoint: ./run_tests.sh
tests-36:
image: python:3.6
networks:
- tests
depends_on:
- tests-rchain
volumes:
- ./:/project
- cache:/root/.cache/pip
environment:
- RCHAIN_GRPC_HOST=tests-rchain
working_dir: /project
entrypoint: ./run_tests.sh
tests-rchain:
networks:
- tests
build:
context: ./rchain
args:
image_tag: release-rnode-v${RNODE_RELEASE}
networks:
tests:
volumes:
cache: