-
Notifications
You must be signed in to change notification settings - Fork 50
Conversation
👍 |
👎 |
With this fix is it possible to change and remove the taupage systemlogs |
ok so we have to use some different directory for custom logs like /var/log/custom or something similar. |
This reverts commit 9103ef5.
we now only mount /var/log/custom as read-write @tuxlife do you agree ? |
👍 |
@apfeiffer85 Why did you need /var/log from the host under /var/log in docker? Why not /var/log-docker/:/var/log and /var/log:/var/log-host? |
i guess there are some use cases where Teams need read access to /var/log/application.log and maybe other log files therefore was the read-only mount (this was already implemented). But what do you mean with /var/log-docker:/var/log ? What we also did was to add a custom logdir /var/log/custom for custom application logs so we only mount /var/log/custom as read-write. But we also could mount this into /var/log-host/custom . This is necessary because the log shipping agents running on the host system and they can only follow logs from the host system ( or lets say it is easier to follow logs on the host system ). |
👍 |
New Solution is now: mount /var/log from host system to the container dir /var/log-host (read-only) |
fixes #229