-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
50 lines (50 loc) · 1.01 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
version: '3'
services:
base:
build:
dockerfile: ./docker/performance/Dockerfile_base
context: .
agent:
depends_on:
- base
build:
dockerfile: ./docker/performance/Dockerfile_agent
context: ../vulneruby_engine
without-agent:
depends_on:
- base
build:
dockerfile: ./docker/performance/Dockerfile_no_agent
context: .
env_file:
- ./docker/.env
ports:
- "3009:3009"
volumes:
- ./run-data/no_agent:/tmp/agent
with-agent-assess:
depends_on:
- agent
build:
dockerfile: ./docker/performance/Dockerfile_assess
context: .
env_file:
- ./docker/.env
ports:
- "3009:3009"
volumes:
- ./run-data/assess:/tmp/agent
with-agent-protect:
depends_on:
- agent
build:
dockerfile: ./docker/performance/Dockerfile_protect
context: .
env_file:
- ./docker/.env
volumes:
- ./run-data/protect:/tmp/agent
ports:
- "3009:3009"
volumes:
run-data: