Sign inSign up

aguyonnet/rsyslog-gui

By aguyonnet

Updated almost 6 years ago

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

Image
4

100K+

aguyonnet/rsyslog-gui repository overview

Docker Pulls Docker Stars

Rsyslog-GUI

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

Software used: RSYSLOG PIMPMYLOG DEBIAN

Github project

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

Tag summary

Content type

Image

Digest

Size

94.9 MB

Last updated

almost 6 years ago

docker pull aguyonnet/rsyslog-gui