how to check syslog for ubuntu docker how to check syslog for ubuntu docker docker docker

how to check syslog for ubuntu docker


There is no rsyslogd installed by default, nor in this image you are using.

If you wish to utilize rsyslogd in your docker container, you should install/configure it by your self via Dockerfile first.

RUN apt-get -y install rsyslog

You will probably need supervisord as well to have all your processes started in container.