Skip to content

Docker image of Rsyslog with Pimpmylog GUI based on debian:stable-slim (latest)

Notifications You must be signed in to change notification settings

aguyonp/rsyslog-gui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rsyslog-GUI

Docker image of Rsyslog with Pimpmylog GUI based on debian:stable-slim (latest)

Software used: RSYSLOG PIMPMYLOG DEBIAN

Links

Doker hub image

Files

  • Dockerfile
  • conf (folder that includes PMA and RSYSLOG confs files)
  • src (folder that contain PMA files)

Ports

By default, the image listens on the following ports:

  • 80 (PMA GUI)
  • 514 (UDP Rsyslog)

Environment variable

  • SYSLOG_USERNAME
  • SYSLOG_PASSWORD

If you do not specify these environment variables, the default login will be admin and the password will be changeme1234

Quick launch

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

Docker-compose it !

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

About

Docker image of Rsyslog with Pimpmylog GUI based on debian:stable-slim (latest)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages