forked from decompiler-explorer/decompiler-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.dev.yml
42 lines (40 loc) · 1.18 KB
/
docker-compose.dev.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
version: '3.8'
x-decompiler:
&default-decompiler-options
deploy:
replicas: ${REPLICAS:-1}
services:
explorer:
build:
dockerfile: Dockerfile.dev
volumes:
- ./explorer:/opt/decompiler_explorer/explorer
- ./templates:/opt/decompiler_explorer/templates
- ./media:/opt/decompiler_explorer/media
- ./staticfiles:/opt/decompiler_explorer/staticfiles
- ./static:/opt/decompiler_explorer/static
- ./decompiler_explorer:/opt/decompiler_explorer/decompiler_explorer
binja:
<<: *default-decompiler-options
ghidra:
<<: *default-decompiler-options
angr:
<<: *default-decompiler-options
snowman:
<<: *default-decompiler-options
retdec:
<<: *default-decompiler-options
recstudio:
<<: *default-decompiler-options
boomerang:
<<: *default-decompiler-options
reko:
<<: *default-decompiler-options
hexrays:
<<: *default-decompiler-options
dewolf:
<<: *default-decompiler-options
relyze:
<<: *default-decompiler-options
revng:
<<: *default-decompiler-options