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
This commit is contained in:
Sergey Shambir 2019-03-02 13:40:42 +03:00
parent 02a89f6dac
commit e3afe6c3e5

View File

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