From e3afe6c3e5009ea258e8ff397427112fd9e0bc41 Mon Sep 17 00:00:00 2001 From: Sergey Shambir Date: Sat, 2 Mar 2019 13:40:42 +0300 Subject: [PATCH] Fix crond command in Dockerfile - added logging to docker logs - run with /etc/crontabs dir See also https://unix.stackexchange.com/questions/412805/crond-log-level-meaning --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index aa574b6..a2f099d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,4 +11,4 @@ ENTRYPOINT ["/docker-entrypoint"] HEALTHCHECK --interval=5s --timeout=3s \ CMD ps aux | grep '[c]rond' || exit 1 -CMD ["crond","-f"] +CMD ["crond", "-f", "-d", "0", "-c", "/etc/crontabs"]