Docker Image for Thomas Patzke's Log4Pot
Note: you will need to specify ports using -p ...
and using the ARGUMENTS
environment variable as shown above.
docker run maxju/log4pot -p 8080:8080 -e ARGUMENTS="--port 8080"
If you want to use HTTPS you need to mount a certificate to /certs/cert.pem
inside the container. The file will need to have both the private key and the fullchain in it.
docker run maxju/log4pot -v /path/to/certificate/file.pem:/certs/cert.pem -p 443:443 -e ARGUMENTS="--port S443"
For configuration reference please see Log4Pot.
docker run maxju/log4pot -v /path/to/log4pot.conf:/app/log4pot.conf
git clone https://github.com/maxju/Log4Pot-docker.git
cd Log4Pot-docker
git clone https://github.com/thomaspatzke/Log4Pot.git
docker build .