This repository has been archived on 2021-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
self-hosting/firefly/Dockerfile

9 lines
276 B
Docker

FROM jc5x/firefly-iii:latest
# Install cron & crontab
RUN apt update && \
apt install --no-install-recommends -y cron && \
echo "0 */4 * * * /usr/bin/php /var/www/html/artisan firefly-iii:cron" | crontab
# Run cron on startup
ENTRYPOINT cron && /usr/local/bin/entrypoint.sh