kuda.ai

Thoughts on programming and music theory.

Clean Docker Build Agents

Created on June 16, 2025

linux/cron

Your docker build agent VMs will likely fill your disk soon. Here is a cron job to clean the build cache regularly.

crontab -e
# run docker builder prune each Friday at 9:00 PM
0 21 * * 6 /usr/bin/docker builder prune -f >> $HOME/logs/crontab/docker-builder-prune.log 2>&1