1
0
bot/test/cron.zsh
2024-03-04 08:38:58 +09:00

8 lines
108 B
Bash

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