This commit is contained in:
kev 2016-10-27 11:34:22 +08:00
parent 5ae499523a
commit 7ef0ee4e0f
3 changed files with 26 additions and 0 deletions

View File

@ -147,6 +147,7 @@ A collection of delicious docker recipes.
- [x] clamav
- [x] dsniff
- [x] ferm
- [x] grr
- [x] hydra
- [x] iptables
- [x] routersploit

9
grr/README.md Normal file
View File

@ -0,0 +1,9 @@
grr
===
![](https://raw.githubusercontent.com/google/grr/gh-pages/img/grr_logo_real_sm.png)
[GRR][1] Rapid Response is an incident response framework focused on remote
live forensics.
[1]: https://github.com/google/grr

16
grr/docker-compose.yml Normal file
View File

@ -0,0 +1,16 @@
grr:
image: grrdocker/grr
ports:
- "8000:8000"
- "8080:8080"
volumes:
- ./data/db:/var/grr-datastore
- ./data/log:/var/log
environment:
- EXTERNAL_HOSTNAME="grr.easypi.info"
- ADMIN_PASSWORD="******"
ulimits:
nofile:
soft: 1048576
hard: 1048576
restart: always