This commit is contained in:
2023-10-20 23:31:16 +09:00
parent 430b5977d8
commit e7b8905d46
48 changed files with 3296 additions and 1 deletions

7
test/cron.zsh Normal file
View File

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