1
0
Files
bot/test/cron.zsh
2024-04-04 13:53:39 +09:00

8 lines
107 B
Bash

function cron() {
t=`docker ps |grep aios|grep R`
if [ -z "$t" ];then
exit
fi
docker compose up -d
}