-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
65 lines (59 loc) · 1.39 KB
/
docker-compose.yml
File metadata and controls
65 lines (59 loc) · 1.39 KB
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
59
60
61
62
63
64
65
services:
gateway:
build:
context: .
dockerfile: ./gateway/Dockerfile
ports: ["8080:8080"]
environment:
INGEST_URL: http://ingest:8081/ingest/domains
SCORE_URL: http://detector:8501/score
MUTATE_URL: http://mutator:8083/mutate
EVAL_URL: http://orchestrator:8084/eval
depends_on:
- ingest
- detector
- mutator
- orchestrator
restart: unless-stopped
ingest:
build:
context: .
dockerfile: ./ingest-api/Dockerfile
ports: ["8081:8081"]
restart: unless-stopped
feature:
build:
context: .
dockerfile: ./feature-extractor/Dockerfile
ports: ["8082:8082"]
restart: unless-stopped
mutator:
build:
context: .
dockerfile: ./mutator/Dockerfile
ports: ["8083:8083"]
restart: unless-stopped
orchestrator:
build:
context: .
dockerfile: ./evasion-orchestrator/Dockerfile
ports: ["8084:8084"]
environment:
MUTATE_URL: http://mutator:8083/mutate
SCORE_URL: http://detector:8501/score
depends_on:
- mutator
- detector
restart: unless-stopped
detector:
build:
context: .
dockerfile: ./dga-detector/Dockerfile
ports: ["8501:8501"]
restart: unless-stopped
telemetry:
build:
context: .
dockerfile: ./telemetry/Dockerfile
ports: ["8085:8085"]
restart: unless-stopped