-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcompose.yaml
35 lines (34 loc) · 1.11 KB
/
compose.yaml
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
services:
el3xir-runner:
image: el3xir:latest
build:
context: .
target: el3xir
dockerfile: ./docker/Dockerfile
cpuset: ${CPUSET:-0}
environment:
SMFUZZ_HARNESSDATA_PATH: /in/harnessdata.csv
volumes:
- ./src:/src:rw
- ./docker/fuzzer-entrypoint.sh:/fuzzer-entrypoint.sh:ro
- ./docker/sh-entrypoint.sh:/sh-entrypoint.sh:ro
- ./docker/rerun-testcases.sh:/rerun-testcases.sh:ro
- ./docker/probe-funcIDs.sh:/probe-funcIDs.sh:ro
- ./docker/cov-plot-entrypoint.sh:/cov-plot-entrypoint.sh:ro
- ${IN:-./in}:/in:rw
- ${OUT:-./out}:/out:rw
el3xir-synthesis:
image: el3xir_synthesis:latest
build:
context: .
target: el3xir_synthesis
dockerfile: ./docker/Dockerfile
environment:
SMFUZZ_HARNESSDATA_PATH: /in/harnessdata.csv
volumes:
- ./src:/src:rw
- ./docker/synthesis-entrypoint.sh:/synthesis-entrypoint.sh:ro
- ./docker/prepkernel-entrypoint.sh:/prepkernel-entrypoint.sh:ro
- ./docker/sh-entrypoint.sh:/sh-entrypoint.sh:ro
- ${IN:-./in}:/in:rw
- ${OUT:-./out}:/out:rw