all-in-one/Containers/mastercontainer/cron.sh

13 lines
357 B
Bash
Raw Normal View History

2021-11-30 18:20:42 +08:00
#!/bin/sh
set -eux
2021-11-30 18:20:42 +08:00
while true; do
# Check for updates and send notification if yes
sudo -u www-data php /var/www/docker-aio/php/src/Cron/cron.php
# Remove dangling images
sudo -u www-data docker image prune -f
# Remove sessions older than 24h
find "/mnt/docker-aio-config/session/" -mindepth 1 -mmin +1440 -delete
2021-11-30 18:20:42 +08:00
sleep 1d
done