2 Apr
2024
2 Apr
'24
4:37 p.m.
On 2024-04-02 16:26:59 -0000 (-0000), bob B via Mailman-users wrote:
Thanks, any idea of where the syslog is in the Maxking Docker version?
docker exec -it -u mailman mailman-core /bin/bash bash-5.0$ cd /var/log bash-5.0$ ls bash-5.0$
The opt/mailman/core/var/logs/mailman.log does not have anything that jumps out.
It looks like logging is going to container stdout, though if you're running it through the compose files you could add a logging section like:
logging:
driver: syslog
options:
tag: "mailman-core"
...for each container (adjusting the tag for each container so you
can separate the log entries). You should also be able to view the
log buffer for each container by using the docker-compose logs
subcommand.
Jeremy Stanley