Dockerfile des Nginx-Containers
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-Dienst wird ausgeführt
root@f11ddfdb471a:/# service cron status
cron is running.
crontab
*/1 * * * * root /usr/sbin/logrotate /etc/logrotate.d/nginx
* * * * * echo "Hello world!" >> /var/log/cron.log 2>&1
leeres Protokoll
root@f11ddfdb471a:/# cat /var/log/cron.log
root@f11ddfdb471a:/# cat /var/log/cron.log
das Problem betrifft nicht nur den einzelnen Job, ich habe auch Logrotate, das auch nicht ausgelöst wird
Was ich versucht habe
- Cron-Dienst manuell gestartet und mehrfach neu gestartet, ebenso der Nginx-Container
- Wenn ich diese Jobs manuell ausführe, funktionieren sie einfach einwandfrei
Lösung
@AlexeyTen, tatsächlich hast du recht,
beim zweiten Job fehlt der Root-Benutzer und beim ersten Job sind die Skriptberechtigungen 664 statt 644