mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 22:46:55 +00:00
8 lines
102 B
Bash
8 lines
102 B
Bash
|
|
#!/bin/sh
|
||
|
|
set -eu
|
||
|
|
|
||
|
|
while true; do
|
||
|
|
php /var/www/docker-aio/php/src/Cron/cron.php
|
||
|
|
sleep 1d
|
||
|
|
done
|