mirror of https://github.com/MISP/misp-docker
Include rsyslog for local syslogger (#202)
* Include rsyslog for local syslogger * Update Dockerfilepull/212/head
parent
3d9729db86
commit
9a5852003a
|
@ -178,6 +178,8 @@ FROM php-base
|
||||||
gpg-agent \
|
gpg-agent \
|
||||||
mariadb-client \
|
mariadb-client \
|
||||||
rsync \
|
rsync \
|
||||||
|
# Include rsyslog to support syslogger
|
||||||
|
rsyslog \
|
||||||
# PHP Requirements
|
# PHP Requirements
|
||||||
php8.2 \
|
php8.2 \
|
||||||
php8.2-apcu \
|
php8.2-apcu \
|
||||||
|
|
|
@ -37,3 +37,12 @@ stdout_logfile=/dev/stdout
|
||||||
stdout_logfile_maxbytes=0
|
stdout_logfile_maxbytes=0
|
||||||
stderr_logfile=/dev/stderr
|
stderr_logfile=/dev/stderr
|
||||||
stderr_logfile_maxbytes=0
|
stderr_logfile_maxbytes=0
|
||||||
|
|
||||||
|
[program:rsyslog]
|
||||||
|
command=/usr/sbin/rsyslogd -n
|
||||||
|
stdout_logfile=/dev/stdout
|
||||||
|
stdout_logfile_maxbytes=0
|
||||||
|
stderr_logfile=/dev/stderr
|
||||||
|
stderr_logfile_maxbytes=0
|
||||||
|
autostart=true
|
||||||
|
autorestart=true
|
||||||
|
|
Loading…
Reference in New Issue