2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2024-05-27 20:48:16 +02:00
docker/develop/fpm-alpine/cron.sh

14 lines
219 B
Bash
Raw Normal View History

#!/bin/sh
set -eu
trap "break;exit" SIGHUP SIGINT SIGTERM
while [ ! -f /var/www/html/.htconfig.php ]; do
sleep 1
done
while true; do
cd /var/www/html
php -f /var/www/html/bin/worker.php
sleep 10m
done