I'm wondering if there is a way to set a auto-restart based on a timer? ie at like midnight auto-restart? One of my libraries I use currently for a few of my apps don't have cache ttl's so I need to reboot it or else my memory grows too high and I get billed too much. Was hoping to automate it rather than manually do it everyday.
#Auto-restart based on time?
3 messages · Page 1 of 1 (latest)
Set NIXPACKS_START_CMD to while true; do timeout 86400 YOUR_START_CMD; done under variables.
replace YOUR_START_CMD with your current start command