mailcow / mailcow-dockerized-docs

mailcow: dockerized - documentation đź“°

Home Page:https://docs.mailcow.email

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

syslog under debian

pgollor opened this issue · comments

At firststeps-syslog.md file there is a workaround to use the /etc/default/docker file.
I think it could be better to use the /etc/docker/daemon.json file for the docker options like here: docker documentation

I tested this with the following content of /etc/docker/daemon.json:

{
  "log-driver": "syslog",
  "log-opts": {
    "syslog-address": "udp://127.0.0.1:514"
  }
}

So i would like to discuss it here before opening a pull request.

Yes, that's the better way. :-) Can you create that PR?

Yes i will do it, but it could take a few days.