From e3189c56ae403f01880ff42a34e87157399a0468 Mon Sep 17 00:00:00 2001 From: Janos SUTO Date: Sat, 10 Feb 2024 05:24:00 +0100 Subject: [PATCH] Added rsyslog to docker image Signed-off-by: Janos SUTO --- docker/Dockerfile | 2 +- docker/start.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 0e7e96f2..c1fa8fc8 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && \ apt-get -y --no-install-recommends install \ wget openssl sysstat php8.1-cli php8.1-cgi php8.1-mysql php8.1-fpm php8.1-zip php8.1-ldap \ php8.1-gd php8.1-curl php8.1-xml php8.1-memcached catdoc unrtf poppler-utils nginx tnef sudo libzip4 \ - libtre5 cron libmariadb-dev mariadb-client-core-10.6 python3 python3-mysqldb ca-certificates curl && \ + libtre5 cron libmariadb-dev mariadb-client-core-10.6 python3 python3-mysqldb ca-certificates curl rsyslog && \ wget https://repo.manticoresearch.com/manticore-repo.noarch.deb && \ dpkg -i manticore-repo.noarch.deb && \ rm -f manticore-repo.noarch.deb && \ diff --git a/docker/start.sh b/docker/start.sh index a57b3219..e7445118 100755 --- a/docker/start.sh +++ b/docker/start.sh @@ -181,6 +181,7 @@ start_services() { service cron start service php8.1-fpm start service nginx start + rsyslogd }