1
0
bot/test/cron.zsh
syui 7b03adda1f
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 9s
v0.1
2024-03-05 04:09:43 +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
}