Docker image of Rsyslog with Pimpmylog GUI based on debian:stable-slim (latest)
Software used: RSYSLOG PIMPMYLOG DEBIAN
- Dockerfile
- conf (folder that includes PMA and RSYSLOG confs files)
- src (folder that contain PMA files)
By default, the image listens on the following ports:
- 80 (PMA GUI)
- 514 (UDP Rsyslog)
- SYSLOG_USERNAME
- SYSLOG_PASSWORD
If you do not specify these environment variables, the default login will be admin and the password will be changeme1234
Without specifying login and password
docker run -d -p 80:80 -p 514:514/udp aguyonnet/rsyslog-gui
By specifying a login and password
docker run -d -e SYSLOG_USERNAME=hello -e SYSLOG_PASSWORD=mypassword -p 80:80 -p 514:514/udp aguyonnet/rsyslog-gui
version: '3.3'
services:
rsyslog-gui:
environment:
- SYSLOG_USERNAME=hello
- SYSLOG_PASSWORD=mypassword
ports:
- '80:80'
- '514:514/udp'
image: aguyonnet/rsyslog-gui
restart: always