-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.test.yml
58 lines (50 loc) · 1.28 KB
/
docker-compose.test.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
56
57
58
version: '3.9'
services:
data-processor:
build:
context: ./data-processor
dockerfile: Dockerfile.test
container_name: data-processor-test
restart: "no"
data-processor-mongo:
build:
context: ./data-processor-mongo
dockerfile: Dockerfile.test
container_name: data-processor-mongo-test
restart: "no"
graph-generator:
build:
context: ./graph-generator
dockerfile: Dockerfile.test
container_name: graph-generator-test
restart: "no"
kafka-consumer:
build:
context: ./kafka-consumer
dockerfile: Dockerfile.test
container_name: kafka-consumer-test
restart: "no"
kafka-consumer-mongo:
build:
context: ./kafka-consumer-mongo
dockerfile: Dockerfile.test
container_name: kafka-consumer-mongo-test
restart: "no"
simulation-load-balancer:
build:
context: ./simulation-load-balancer
dockerfile: Dockerfile.test
container_name: simulation-load-balancer-test
restart: "no"
spade-instance:
build:
context: ./spade-instance
dockerfile: Dockerfile.test
container_name: spade-instance-test
restart: "no"
translator:
build:
context: ./translator
dockerfile: Dockerfile.test
container_name: translator-test
restart: "no"