Skip to content
This repository was archived by the owner on Jul 25, 2025. It is now read-only.

Latest commit

 

History

History
21 lines (12 loc) · 829 Bytes

File metadata and controls

21 lines (12 loc) · 829 Bytes

docker-shockpot

This is Docker image for honeypot Shockpot (https://github.com/threatstream/shockpot).

Build docker image

$ git clone https://github.com/GovCERT-CZ/docker-shockpot
$ cd docker-shockpot
$ docker build -t <repository>/<name> .

Run docker container

$ docker run [--name <container name>] [-d] -p 80:80  [-v <host path>:/opt/shockpot/log] <repository>/<name>

Run docker container with custom configuration

$ wget https://raw.githubusercontent.com/threatstream/shockpot/master/shockpot.conf -O shockpot.conf
update shockpot.conf file with your settings (change port to 80 - default 8080)
$ docker run [--name <container name>] [-d] -p 80:80 [-v <host path>/shockpot.conf:/opt/shockpot/shockpot.conf] [-v <host path>:/opt/shockpot/log] <repository>/<name>