I set it to debug at somepoint and forgot maybe? Idk, but why the heck does the default config of the official Docker is to keep all logs, forever, in a single file woth no rotation?
Feels like 101 of log files. Anyway, this explains why my storage recipt grew slowly but unexpectedly.
Shimitar@downonthestreet.eu 5 weeks ago
You should always setup logrotate. Yes the good old Linux logrotate…
catloaf@lemm.ee 5 weeks ago
We should each not have to configure log rotation for every individual service. That would require identify what and how it logs data in the first place, then implementing a logrotate config. Services should include a reasonable default in logrotate.d as part of their install package.
sugar_in_your_tea@sh.itjust.works 5 weeks ago
Docker services should let docker handle it, and the user could then manage it through Docker or forward to some other logging service (syslog, systemd, etc). Processes in containers shouldn’t touch rotation or anything, just log levels and maybe which types of logs go to stdout vs stderr.
RubberElectrons@lemmy.world 5 weeks ago
Ideally yes, but I’ve had to do this regularly for many services developed both in-house and out of house.
Solve problems, and maybe share your work if you like, I think we all appreciate it.
non_burglar@lemmy.world 5 weeks ago
I don’t disagree that logrotate is a sensible answer here, but making that the responsibility of the user is silly.