You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This needs the following addition to the Dockerfile file:
#Install Cron
RUN apt-get update
RUN apt-get -y install cron
# Add crontab file in the cron directory
ADD cron/cron.sh /etc/cron.d/webhook-cron
# Give execution rights on the cron job
RUN chmod 0644 /etc/cron.d/webhook-cron
# Create the log file to be able to run tail
RUN touch /var/log/cron.log
# Run the command on container startup
CMD cron && tail -f /var/log/cron.log
The resending of events (for previously failed emissions) through
needs to be executed as a cron job
The text was updated successfully, but these errors were encountered: