-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
89 lines (84 loc) · 2.49 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
version: '3.3'
services:
blackarch-zsh:
container_name: blackarch-zsh
image: cloufish/blackarch-zsh:latest
hostname: blackarch-zsh
network_mode: host
stdin_open: true
tty: true
restart: unless-stopped
volumes:
- '~/Pentesting:/home/penelope/Pentesting'
- '~/Downloads:/home/penelope/Downloads'
blackarch-zsh-iot:
container_name: bug-bounty-framework-iot
image: cloufish/bug-bounty-framework-iot:latest
hostname: bug-bounty-framework-iot
network_mode: host
stdin_open: true
tty: true
restart: unless-stopped
volumes:
- '~/Pentesting:/home/penelope/Pentesting'
- '~/Downloads:/home/penelope/Downloads'
blackarch-zsh-minimal:
container_name: bug-bounty-framework-mobile
image: cloufish/bug-bounty-framework-mobile:latest
hostname: bug-bounty-framework-mobile
network_mode: host
stdin_open: true
tty: true
restart: unless-stopped
volumes:
- '~/Pentesting:/home/penelope/Pentesting'
- '~/Downloads:/home/penelope/Downloads'
mobile-security-framework-mobsf:
ports:
- '8000:8000'
image: 'opensecurity/mobile-security-framework-mobsf:latest'
restart: unless-stopped
stdin_open: true
tty: true
volumes:
- '~/.local/share/MobSF:/root/.MobSF'
drozer:
container_name: drozer
image: fsecurelabs/drozer
hostname: drozer
network_mode: host
stdin_open: true
tty: true
restart: unless-stopped
command: bash -c "drozer console connect"
bug-bounty-framework-web:
container_name: bug-bounty-framework-web
image: cloufish/bug-bounty-framework-web:latest
hostname: bug-bounty-framework-web
network_mode: host
stdin_open: true
tty: true
restart: unless-stopped
volumes:
- '~/Pentesting:/home/penelope/Pentesting'
- '~/Downloads:/home/penelope/Downloads'
couchdb:
hostname: couchdb
image: honoki/bbrf-server
environment:
- COUCHDB_USER=admin
- COUCHDB_PASSWORD=penelope # please please please replace this with a secure password
- BBRF_PASSWORD=penelope # please please please replace this with a secure password
volumes:
- ~/.data/couchdb/1:/opt/couchdb/data
proxy:
image: nginx
hostname: proxy
ports:
- "9001:443"
volumes:
- ./proxy/nginx.conf:/etc/nginx/conf.d/default.conf
- ./proxy/docker-entrypoint.d/:/docker-entrypoint.d/
- ./proxy/keys/:/etc/nginx/keys/
depends_on:
- couchdb