-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
57 lines (52 loc) · 1.06 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
version: '3'
services:
burp-server:
image: pschiffe/burp-server
tty: true
privileged: true
volumes:
- burp-server-conf:/etc/burp
- burp-server-data:/var/spool/burp
tmpfs:
- /run
- /tmp
environment:
- BUI_AGENT_PASSWORD=secret-burp-server-pw
- "BURP_CLIENTS_CONFIG=burp-client:super-secret"
networks:
burp:
aliases:
- burp
burp-ui:
image: pschiffe/burp-ui
volumes:
- burp-ui-conf:/etc/burp
environment:
- BUI_AGENT_PASSWORD=secret-burp-server-pw
networks:
- burp
ports:
- "5000:5000"
depends_on:
- burp-server
burp-client:
image: pschiffe/burp-client
hostname: burp-client
volumes:
- burp-client-conf:/etc/burp
- /etc:/tobackup/burp-client-etc:ro
security_opt:
- label:disable
environment:
- BURP_CLIENT_PASSWORD=super-secret
networks:
- burp
depends_on:
- burp-server
networks:
burp:
volumes:
burp-server-conf:
burp-server-data:
burp-ui-conf:
burp-client-conf: