mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2024-11-23 20:11:12 +00:00
15 lines
470 B
Plaintext
15 lines
470 B
Plaintext
|
# place this example code at /etc/logrotate.d/traefik on your docker host server
|
||
|
# please adjust the custom file path below, where your traefik logs are stored
|
||
|
# please adjust the below traefik container name to send the USR1 signal for log rotation
|
||
|
|
||
|
compress
|
||
|
/mnt/docker-volumes/traefik/logs/*.log {
|
||
|
size 20M
|
||
|
daily
|
||
|
rotate 14
|
||
|
missingok
|
||
|
notifempty postrotate
|
||
|
docker kill --signal="USR1" traefik # adjust this line to your traefik container name
|
||
|
endscript
|
||
|
}
|