You can create a crontab file and mount it at /crontab inside the container to schedule any commands. Example: 0 0 * * * cd /resticprofile && resticprofile backupThis configuration would run resticprofile backup every day at midnight. It assumes that your resticprofile files are mounted under /resticprofile, as defined in the Unraid app template. Another approach is to use the User Scripts plugin to set up a scheduled script that runs a command inside the container using docker exec. Example: docker exec resticprofile resticprofile backupIf you have multiple containers performing scheduled tasks, this can be a convenient way to centralize all scheduling configurations in a single place. It also makes it easy to run your scripts at arbitrary times with the click of a button. Hope this helps.