syui
e7c06cf9d1
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 4s
8 lines
107 B
Bash
8 lines
107 B
Bash
function cron() {
|
|
t=`docker ps |grep aios|grep R`
|
|
if [ -z "$t" ];then
|
|
exit
|
|
fi
|
|
docker compose up -d
|
|
}
|