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