nginx容器的Dockerfile
FROM nginx:latest
# Remove sym links from nginx image
RUN rm /var/log/nginx/access.log
RUN rm /var/log/nginx/error.log
RUN apt-get update && apt-get install -y logrotate && rm -rf /var/lib/apt/lists/*
COPY nginx.conf /etc/nginx/nginx.conf
# COPY conf.d /etc/nginx/conf.d
# COPY cert/ /etc/nginx/certs
COPY data /data
COPY --chown=root:root nginx /etc/logrotate.d/
RUN echo -e '#!/bin/sh\nlogrotate -f /etc/logrotate.d/nginx\n' > /etc/cron.daily/logrotate-nginx && chmod +x /etc/cron.daily/logrotate-nginx
EXPOSE 80 443
CMD service cron start && nginx -g 'daemon off;'
cron服务正在运行
root@f11ddfdb471a:/# service cron status
cron is running.
定时任务
*/1 * * * * root /usr/sbin/logrotate /etc/logrotate.d/nginx
* * * * * echo "Hello world!" >> /var/log/cron.log 2>&1
空日志
root@f11ddfdb471a:/# cat /var/log/cron.log
root@f11ddfdb471a:/# cat /var/log/cron.log
问题不仅仅出在单个作业上,我还有 logrotate,它也没有被触发
我尝试过
- 手动启动 cron 服务并多次重启 nginx 容器
- 如果我手动运行这些作业,它们就能正常工作
解决方案
@AlexeyTen,事实上你是对的,
第二项作业缺少 root 用户,并且第一项作业的脚本权限为 664 而不是 644