Skip to content

Commit 9a58520

Browse files
authored
Include rsyslog for local syslogger (#202)
* Include rsyslog for local syslogger * Update Dockerfile
1 parent 3d9729d commit 9a58520

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

core/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,8 @@ FROM php-base
178178
gpg-agent \
179179
mariadb-client \
180180
rsync \
181+
# Include rsyslog to support syslogger
182+
rsyslog \
181183
# PHP Requirements
182184
php8.2 \
183185
php8.2-apcu \

core/files/etc/supervisor/conf.d/10-supervisor.conf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,12 @@ stdout_logfile=/dev/stdout
3737
stdout_logfile_maxbytes=0
3838
stderr_logfile=/dev/stderr
3939
stderr_logfile_maxbytes=0
40+
41+
[program:rsyslog]
42+
command=/usr/sbin/rsyslogd -n
43+
stdout_logfile=/dev/stdout
44+
stdout_logfile_maxbytes=0
45+
stderr_logfile=/dev/stderr
46+
stderr_logfile_maxbytes=0
47+
autostart=true
48+
autorestart=true

0 commit comments

Comments
 (0)