mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-21 11:06:09 +02:00
7 lines
93 B
Bash
Executable file
7 lines
93 B
Bash
Executable file
#!/bin/sh
|
|
set -eu
|
|
|
|
while [ 1 ]; do
|
|
(php -f /var/www/html/cron.php &);
|
|
sleep 5m;
|
|
done
|