Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 1.34 KB

README.md

File metadata and controls

53 lines (38 loc) · 1.34 KB

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