[FIX]Overlayfs problem with cron (again)

This commit is contained in:
Fabien BOURGEOIS 2017-11-22 15:55:38 +01:00
parent 8f8de4cbf0
commit 2226da480d
6 changed files with 6 additions and 14 deletions

View File

@ -7,9 +7,6 @@ ENV DEST /var/backups/
RUN apt-get update && apt-get install --no-install-recommends -y \
cron gettext-base rsync python-minimal libpython-stdlib
# Avoid overlayfs bug with tail
VOLUME /var/log
COPY crontab /etc/crontab
RUN chmod 644 /etc/crontab

View File

@ -1,6 +1,5 @@
# hourly backup
# m h dom mon dow user command
15 * * * * root /bin/bash /opt/backup/rsync.sh >> /var/log/cron.log 2>&1
0 3 * * * root /usr/bin/python /opt/backup/plan.py >> /var/log/cron.log 2>&1
15 * * * * root /bin/bash /opt/backup/rsync.sh > /proc/1/fd/1 2>/proc/1/fd/2
0 3 * * * root /usr/bin/python /opt/backup/plan.py > /proc/1/fd/1 2>/proc/1/fd/2
# empty line needed

View File

@ -2,4 +2,4 @@
envsubst < /opt/backup/rsync.template > /opt/backup/rsync.sh
envsubst < /opt/backup/plan.tpl.py > /opt/backup/plan.py
touch /var/log/cron.log && cron && tail -f /var/log/cron.log
cron -f

View File

@ -10,9 +10,6 @@ USER root
RUN mkdir backups
RUN apt-get install -y --no-install-recommends cron gettext-base
# Avoid overlayfs bug with tail
VOLUME /var/log
COPY crontab /etc/crontab
RUN chmod 644 /etc/crontab

View File

@ -1,6 +1,5 @@
# daily odoo backup
# m h dom mon dow user command
0 2 * * * odoo /bin/bash /home/odoo/backup.sh >> /var/log/cron.log 2>&1
10 2 * * * odoo /usr/bin/python /home/odoo/plan.py >> /var/log/cron.log 2>&1
0 2 * * * odoo /bin/bash /home/odoo/backup.sh > /proc/1/fd/1 2>/proc/1/fd/2
10 2 * * * odoo /usr/bin/python /home/odoo/plan.py /proc/1/fd/1 2>/proc/1/fd/2
# empty line required at the end of this file for a valid cron file.

View File

@ -2,4 +2,4 @@
envsubst < /home/odoo/backup.template > /home/odoo/backup.sh
chown odoo:odoo /home/odoo/backup.sh
touch /var/log/cron.log && cron && tail -f /var/log/cron.log
cron -f