Spaces:
Sleeping
Sleeping
File size: 420 Bytes
1dce2dd |
1 2 3 4 5 6 7 8 9 10 11 |
#!/bin/sh
# Xóa toàn bộ dữ liệu trong thư mục /app/results vào 10h tối mỗi ngày
# Thêm dòng sau vào crontab khi build docker
# 0 22 * * * /app/clear_results.sh
rm -rf /app/results/*
echo "[CRON] Đã xóa dữ liệu trong /app/results lúc $(date)" >> /app/clear_results.log
rm -rf /app/tts_cache/*
echo "[CRON] Đã xóa dữ liệu trong /app/tts_cache lúc $(date)" >> /app/clear_tts_cache.log
|