forked from grmontesino/docker-burp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.example
More file actions
70 lines (63 loc) · 1.38 KB
/
Copy pathdocker-compose.example
File metadata and controls
70 lines (63 loc) · 1.38 KB
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
version: "3.5"
x-global-env: &globalenv
TZ: "America/Sao_Paulo"
x-restart: &restart
restart: unless-stopped
services:
burp-server:
container_name: burp-server
image: grmontesino/burp-server
<<: *restart
environment:
<<: *globalenv
server_protocol: 1
server_listen_status: "0.0.0.0:4972"
server_directory: "/media/backup"
server_restore_client: burpui
clientconf_0_name: burpui
clientconf_1_name: localhost
clientconf_1_include_0: "/mnt/home"
expose:
- "4972"
ports:
- "4971:4971"
secrets:
- localhost
- burpui
volumes:
- "./tls/server:/etc/burp/tls"
- source: /media
target: /media
type: bind
bind:
propagation: rslave
burp-client:
container_name: burp-client
image: grmontesino/burp-client
<<: *restart
environment:
<<: *globalenv
client_server: burp-server
client_cname: localhost
secrets:
- localhost
volumes:
- "./tls/client:/etc/burp/tls"
- "/home:/mnt/home"
burp-ui:
container_name: burp-ui
image: grmontesino/burp-ui
<<: *restart
environment:
<<: *globalenv
ports:
- "5000:5000"
secrets:
- burpui
volumes:
- "./tls/ui:/etc/burp/tls"
secrets:
localhost:
file: ./secrets/localhost
burpui:
file: ./secrets/burpui