-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.override.yml
52 lines (44 loc) · 1 KB
/
docker-compose.override.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
51
52
version: '3'
services:
metasploit:
container_name: metasploit
image: metasploitframework/metasploit-framework:latest
environment:
DATABASE_URL: postgres://postgres:msfpassword@database:5432/msf
links:
- database
tty: true
ports:
- 4444:4444
volumes:
- $HOME/.msf4:/home/msf/.msf4
database:
container_name: postgres
image: postgres:10-alpine
environment:
- POSTGRES_PASSWORD=msfpassword
- POSTGRES_DB=msf
stdin_open: true
tty: true
volumes:
- $PWD/database:/var/lib/postgresql/data
ports:
- 5432:5432
dradis:
container_name: dradis
image: evait/dradis-ce
volumes:
- $PWD/dradis/dbdata:/dbdata
- $PWD/dradis/templates:/opt/dradis-ce/templates
ports:
- 3010:3000
links:
- redis
redis:
container_name: redis
image: redis
dvwap:
container_name: dvwap
image: vulnerables/web-dvwa
ports:
- 8082:80