docker nextcloud后台cron定时任务

编写脚本

crontab定时任务只能执行脚本,所以,我们必须写先一个脚本
我这里路径是/root

vim vim nextcloud-crontab.sh

脚本内容

#!/bin/bash
docker exec nextcloud /bin/bash -c "su www-data -s /bin/bash -c  'php cron.php'"

设置可执行权限

chmod 777 nextcloud-crontab.sh

设置定时任务

crontab -e

第一次打开crontab -e会提示你选一个编辑器,我这里是nano

*/5 * * * *  /bin/sh /root/nextcloud-crontab.sh

20231201123822273-image

 

按CTRL +X推出然后按Y确定 回车

 
 

© 版权声明
THE END
喜欢就支持一下吧
点赞11赞赏 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情

    暂无评论内容