Clear Up Temporary Files
The following command can be added as a cron entry to be run periodically on single server installations. Files more than a day old will be deleted.
find /var/lib/docker/volumes/gamebench_filedata/_data/temp -type f -mmin +1440 -delete
If you’ve chosen to bind mount the gamebench
directory, you can run the same command as above but replace the path with /path/to/gamebench/temp
.
Last updated on