:: Re: [DNG] Docker daemon logrotate
Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Olaf Meeuwissen
Fecha:  
A: Tom
Cc: dng
Asunto: Re: [DNG] Docker daemon logrotate
Hi Tom,

Tom via Dng <dng@???> writes:

> [...]
> I guess I’ll have to configure debian logrotate config myself if the
> daemon doesn’t handle that. I’m kind of surprised that it’s not a more
> widespread issue.


Here's what I use to get the Docker daemon logs handled by logrotate

  $ cat /etc/logrotate.d/docker
  /var/log/docker.log {
    compress
    copytruncate
    delaycompress
  }


Note that this runs the risk of losing a smallish window of log messages
when rotating, IIRC.

> Does systemd/journald not require any logrotate.d config?


Under systemd the Docker daemon logs to the journal which is rotated
automatically.

Hope this helps,
--
Olaf Meeuwissen