-
Notifications
You must be signed in to change notification settings - Fork 76
/
docker-compose.yml
52 lines (50 loc) · 1.17 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
services:
node-a:
container_name: "node-a"
build:
context: .
dockerfile: ractor_cluster_integration_tests/Dockerfile
args:
- FEATURES=${FEATURES}
image: ractor_cluster_tests:latest
networks:
- test-net
entrypoint: ''
command: ractor_cluster_integration_tests test ${A_TEST}
environment:
RUST_LOG: debug
node-b:
depends_on:
- node-a
container_name: "node-b"
build:
context: .
dockerfile: ractor_cluster_integration_tests/Dockerfile
args:
- FEATURES=${FEATURES}
image: ractor_cluster_tests:latest
networks:
- test-net
entrypoint: ''
command: ractor_cluster_integration_tests test ${B_TEST}
environment:
RUST_LOG: debug
node-c:
depends_on:
- node-b
container_name: "node-c"
build:
context: .
dockerfile: ractor_cluster_integration_tests/Dockerfile
args:
- FEATURES=${FEATURES}
image: ractor_cluster_tests:latest
networks:
- test-net
entrypoint: ''
command: ractor_cluster_integration_tests test ${C_TEST}
environment:
RUST_LOG: debug
networks:
test-net:
external: false