Turned off verbose logging

For busybox cron level 6 is enough to see errors and hide debug info
Debug info shown at level 5
Nothing shown at levels 0, 1, 2, 3, 4
See https://unix.stackexchange.com/questions/412805/crond-log-level-meaning
This commit is contained in:
Sergey Shambir 2019-03-02 15:45:19 +03:00
parent e3afe6c3e5
commit 46407e1e27

View File

@ -11,4 +11,4 @@ ENTRYPOINT ["/docker-entrypoint"]
HEALTHCHECK --interval=5s --timeout=3s \
CMD ps aux | grep '[c]rond' || exit 1
CMD ["crond", "-f", "-d", "0", "-c", "/etc/crontabs"]
CMD ["crond", "-f", "-d", "6", "-c", "/etc/crontabs"]