1
0
bot/test/cron.zsh
2024-02-21 19:09:17 +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
}