Skip to content

Commit 7ef0ee4

Browse files
committed
add grr
1 parent 5ae4995 commit 7ef0ee4

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ A collection of delicious docker recipes.
147147
- [x] clamav
148148
- [x] dsniff
149149
- [x] ferm
150+
- [x] grr
150151
- [x] hydra
151152
- [x] iptables
152153
- [x] routersploit

grr/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
grr
2+
===
3+
4+
![](https://raw.githubusercontent.com/google/grr/gh-pages/img/grr_logo_real_sm.png)
5+
6+
[GRR][1] Rapid Response is an incident response framework focused on remote
7+
live forensics.
8+
9+
[1]: https://github.com/google/grr

grr/docker-compose.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
grr:
2+
image: grrdocker/grr
3+
ports:
4+
- "8000:8000"
5+
- "8080:8080"
6+
volumes:
7+
- ./data/db:/var/grr-datastore
8+
- ./data/log:/var/log
9+
environment:
10+
- EXTERNAL_HOSTNAME="grr.easypi.info"
11+
- ADMIN_PASSWORD="******"
12+
ulimits:
13+
nofile:
14+
soft: 1048576
15+
hard: 1048576
16+
restart: always

0 commit comments

Comments
 (0)