All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m42s
5 lines
247 B
Plaintext
5 lines
247 B
Plaintext
# 开市每小时执行
|
|
0 * * * * root /usr/local/bin/python /app/hour.py 2>&1 | tee -a /var/log/cron.log /app/log/cron.log
|
|
# 每天 14:45 执行
|
|
45 14 * * * root /usr/local/bin/python /app/day.py 2>&1 | tee -a /var/log/cron.log /app/log/cron.log
|