I have installed a Joplin server (latest version) on my synology Nas and as soon as it is enabled in docker the server writes on the hard-drive at ~1MB/s therefore I constantly hear my hard-drives writing noise. This happens even though I am not syncing with the app (even with the network cable of my nas disconnected).
Is there a way to reduce or stop this permanent writing ?
Here is a log extract. But the taskservice #11 occure every 10s and for less than a second. Whereas the disk activity while the Joplin server is up is continuous. I does not seems to explain the constant writing on disk.
This is a file that's managed by Postgres and it's indeed going to be written to every time there's a log statement. I don't know how your server is setup but generally you shouldn't mirror this file since it's to manage current transactions, not for data.
But anyway the server logs to stdout so you could just send everything to do /dev/null if you wanted, but I don't think this is causing any disk activity. More likely it's the service to handle the shared notebooks that is saving its internal state, and that is necessary for it to work so it can't be configured.