2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2024-06-22 21:09:23 +02:00
docker/2018.08-dev/fpm-alpine/cron.sh

11 lines
180 B
Bash
Raw Normal View History

#!/bin/sh
2018-05-22 21:47:37 +02:00
trap "break;exit" HUP INT TERM
while [ ! -f /var/www/html/.htconfig.php ]; do
sleep 1
done
while true; do
php -f /var/www/html/bin/worker.php
sleep 10m
done