docker/docker-logrotate.sh
2016-06-17 18:03:06 +03:00

11 lines
274 B
Bash
Executable file

#!/bin/sh
LOGROTATE=true
[ -f /etc/sysconfig/docker ] && source /etc/sysconfig/docker
if [ $LOGROTATE == true ]; then
for id in $(docker ps -q); do
exec $(docker exec $id logrotate -s /var/log/logstatus /etc/logrotate.conf > /dev/null 2&>1)
done
fi
exit 0