-
Notifications
You must be signed in to change notification settings - Fork 32
/
docker-compose.yml
46 lines (46 loc) · 1.21 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
version: "3.7"
services:
probe_wrapper:
build: .
image: unicorefuzz:latest
entrypoint: ['python3', 'ucf', 'attach']
volumes:
- type: volume
source: unicorefuzz
target: /unicorefuzz/unicore_workdir
- type: bind
source: ./config.py
target: /unicorefuzz/config.py
afl:
build: .
image: unicorefuzz:latest
entrypoint: ['python3', 'ucf', 'fuzz']
volumes:
- type: volume
source: unicorefuzz
target: /unicorefuzz/unicore_workdir
- type: bind
source: ./config.py
target: /unicorefuzz/config.py
- type: bind
source: ./afl_inputs
target: /unicorefuzz/afl_inputs
- type: bind
source: ./afl_outputs
target: /unicorefuzz/afl_outputs
# harness:
# build: .
# image: unicorefuzz:latest
# entrypoint: ['python3', 'ucf', 'emuu', '--wait', '-t', 'testcase']
# volumes:
# - type: volume
# source: unicorefuzz
# target: /unicorefuzz/unicore_workdir
# - type: bind
# source: ./config.py
# target: /unicorefuzz/config.py
# - type: bind
# source: ./testcase
# target: /unicorefuzz/testcase
volumes:
unicorefuzz: