all-in-one/Containers/mastercontainer/cron.sh
szaimen 3206ce4d16 remove volume prune as we don't want to risk anything
Signed-off-by: szaimen <szaimen@e.mail.de>
2021-12-15 13:07:39 +01:00

11 lines
245 B
Bash

#!/bin/sh
set -eux
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
sleep 1d
done