From 0c1915081f775f3340012d02d33743b299b5eb4c Mon Sep 17 00:00:00 2001 From: Peter Truman Date: Sat, 7 Nov 2020 12:06:25 +0000 Subject: [PATCH] Update Dockerfile Changed crontab to run at 2am instead of 1am, as DST changes caused there to be 2 x 1ams and thus it runs twice :) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8383a56..d9efe78 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,6 +15,6 @@ RUN apk update && \ curl https://raw.githubusercontent.com/ptruman/cwatch/master/cwatch.sh > /usr/sbin/cwatch.sh && \ chmod a+rx /usr/sbin/cwatch.sh && \ touch /var/log/cwatch && \ - echo "0 1 * * * /usr/sbin/cwatch.sh > /var/log/cwatch" >> /etc/crontabs/root + echo "0 2 * * * /usr/sbin/cwatch.sh > /var/log/cwatch" >> /etc/crontabs/root CMD ["crond", "-f"]