//Latest Docker image of Rsyslog with Pimpmylog GUI based on debian:stable-slim
100K+

Docker image of Rsyslog with Pimpmylog GUI based on debian:stable-slim
Software used: RSYSLOG PIMPMYLOG DEBIAN
By default, the image listens on the following ports:
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
Content type
Image
Digest
Size
94.9 MB
Last updated
almost 6 years ago
docker pull aguyonnet/rsyslog-gui