-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathdocker-compose.yaml
135 lines (135 loc) · 3.97 KB
/
docker-compose.yaml
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
version: "3.2"
services:
mysqlserver:
restart: always
ports:
- "33306:3306"
image: daxia/qingting:mysql57
environment:
- MYSQL_DATABASE=edge
- MYSQL_ROOT_PASSWORD=123
- TZ=Asia/Shanghai
control:
restart: always
container_name: main
image: daxia/qingting:control_latest
environment:
- serverAddr=http://txy8g.songboy.site:10000
- token=4b2d6574e1ad0d5e8647f23295137b77
- sceId=6
- nodeId=8
- taskId=9
- concurrent=4
links:
- mysqlserver:mysql_addr
stdin_open: true
tty: true
volumes:
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/control/code"
target: "/root/code"
rad:
image: daxia/qingting:rad_latest
restart: always
links:
- mysqlserver:mysql_addr
volumes:
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/rad/code"
target: "/root/code"
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/rad/tools"
target: "/data/tools"
stdin_open: true
tty: true
command: /bin/sh -c "cd /root/code/ && php index.php"
xray:
image: daxia/qingting:xray_latest
restart: always
links:
- mysqlserver:mysql_addr
volumes:
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/xray/code"
target: "/root/code"
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/xray/tools"
target: "/data/tools"
stdin_open: true
tty: true
command: /bin/sh -c "cd /root/code/ && php index.php"
sqlmap:
image: daxia/qingting:sqlmap_latest
restart: always
links:
- mysqlserver:mysql_addr
volumes:
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/sqlmap/code"
target: "/root/code"
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/sqlmap/tools"
target: "/data/tools"
stdin_open: true
tty: true
command: /bin/sh -c "cd /root/code/ && php index.php"
dirmap:
image: daxia/qingting:dirmap_latest
restart: always
links:
- mysqlserver:mysql_addr
volumes:
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/dirmap/code"
target: "/root/code"
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/dirmap/tools"
target: "/data/tools"
stdin_open: true
tty: true
command: /bin/sh -c "cd /root/code/ && php index.php"
dismap:
image: daxia/qingting:dismap_latest
restart: always
links:
- mysqlserver:mysql_addr
volumes:
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/dismap/code"
target: "/root/code"
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/dismap/tools"
target: "/data/tools"
stdin_open: true
tty: true
command: /bin/sh -c "cd /root/code/ && php index.php"
oneforall:
image: daxia/qingting:oneforall_latest
restart: always
links:
- mysqlserver:mysql_addr
volumes:
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/oneforall/code"
target: "/root/code"
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/oneforall/tools/config"
target: "/OneForAll/config"
stdin_open: true
tty: true
command: /bin/sh -c "cd /root/code/ && php index.php"
vulmap:
image: daxia/qingting:vulmap_latest
restart: always
links:
- mysqlserver:mysql_addr
volumes:
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/vulmap/code"
target: "/root/code"
- type: bind
source: "/Users/tangqingsong/mycode/SecurityPlatform/edge/vulmap/tools"
target: "/data/tools"
stdin_open: true
tty: true
command: /bin/sh -c "cd /root/code/ && php index.php"