Fixed firefly cronjob

pull/3/head
Jef Roosens 2021-01-11 15:20:43 +01:00
parent ed1c712b79
commit 6f40029a9c
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ ARG LOCALE
# Install cron; setup locales
RUN apt update && \
apt install --no-install-recommends -y cron && \
echo "0 */4 * * * /usr/bin/php /var/www/html/artisan firefly-iii:cron" | crontab && \
echo "0 */4 * * * php /var/www/html/artisan firefly-iii:cron" | crontab && \
echo "$LOCALE.UTF-8 UTF-8" >> /etc/locale.gen && \
locale-gen