mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-07-26 10:55:37 +00:00
boring-nginx
matomo
nextcloud
nginx-php
privatebin
searx
unmaintained
boinc
cowrie
cryptpad
freshrss
ghost
isso
kippo-graph
s6.d
Dockerfile
README.md
nginx.conf
php-fpm.conf
run.sh
libresonic
lutim
lychee
mastodon
mediawiki
nginx
parsoid
pgbouncer
rainloop
reverse
rtorrent-flood
rutorrent
tor
LICENSE
README.md
30 lines
805 B
Markdown
30 lines
805 B
Markdown
|
### wonderfall/kippo-graph
|
||
|
|
||
|

|
||
|
|
||
|
#### What is this?
|
||
|
Kippo-Graph is a full featured script to visualize statistics for a Kippo based SSH honeypot.
|
||
|
|
||
|
#### Environment variables
|
||
|
- **UID** *(default : 991)*
|
||
|
- **GID** *(default : 991)*
|
||
|
|
||
|
#### How to configure
|
||
|
You should provide your own configuration file from this base : https://github.com/ikoniaris/kippo-graph/blob/master/config.php.dist
|
||
|
You can mount this single file to your Docker container.
|
||
|
|
||
|
#### Docker compose (example)
|
||
|
```
|
||
|
kippo-graph:
|
||
|
image: wonderfall/kippo-graph
|
||
|
links:
|
||
|
- cowrie-db:cowrie-db
|
||
|
volumes:
|
||
|
- /mnt/kippo-graph/config.php:/kippo-graph/config.php
|
||
|
- /mnt/cowrie/log:/opt/cowrie/log
|
||
|
environment:
|
||
|
- GID=991
|
||
|
- UID=991
|
||
|
```
|
||
|
|