Hello. I have some problem with traefik into container. I use docker-compose and i have this docker-compose.yml:
version: '3'
networks:
mynet:
external: true
internal:
external: false
services:
traefik:
image: traefik:latest
container_name: traefik
ports:
- "80:80"
- "443:443"
labels:
- "traefik.enable=true"
networks:
- mynet
environment:
- TZ=Europe/Moscow
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:rw"
- "./traefik:/home/traefik/"
- "/etc/localtime:/etc/localtime:ro"
- ./traefik.toml:/traefik.toml
- ./acme.json:/acme.json
restart: "unless-stopped"
And part of traefik.toml
...
[log]
level = "ERROR"
filePath = "/home/traefik/Logs/full.log"
format = "common"
[accessLog]
filePath = "/home/traefik/Logs/access.log"
bufferingSize = 100
[accessLog.fields]
defaultMode = "keep"
[accessLog.fields.names]
"StartLocal" = "keep"
"StartUTC" = "drop"
...
And i want to use logrotate from host. I create file at /etc/logrotate.d/traefik
/home/administrator/traefik/traefik/Logs/access.log {
daily
rotate 5
missingok
notifempty
postrotate
docker kill --signal="USR1" traefik
endscript
}
If use logrotate /etc/logrotate.conf --debug
rotating log /home/administrator/traefik/traefik/Logs/access.log, log->rotateCount is 5
dateext suffix '-20220504'
glob pattern '-[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]'
glob finding old rotated logs failed
fscreate context set to unconfined_u:object_r:user_home_t:s0
renaming /home/administrator/traefik/traefik/Logs/access.log to /home/administrator/traefik/traefik/Logs/access.log-20220504
creating new /home/administrator/traefik/traefik/Logs/access.log mode = 0664 uid = 1000 gid = 1000
running postrotate script
running script with arg /home/administrator/traefik/traefik/Logs/access.log: "
docker kill --signal="USR1" traefik
"
switching euid to 0 and egid to 0
And nothing happens. At first time i think it's trouble with postrotate script. But if i send at tty from hosts invoke command docker kill --signal=1 traefik
and my container stops. Well, "docker kill" - are working. May be anybody use logrotate from host machine for docker container? Thanks for help!