UI shows "no speedtests scheduled" #2264
-
Checklist
Deployment EnvironmentDocker Compose DescriptionI'm running Speedtest Tracker (latest image) through docker compose inside of Komodo, in case that's relevant. There's nothing going on in the logs. I'm able to do manual speedtests without issue, but I can't seem to schedule anything via the environment variable. Relevant line from I'm a Docker novice and even newer to Speedtest Tracker, but this looks to me like it's not understanding the environment variable somehow. Did I do something wrong? Anything else?No response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
There's a small issue with your environment variable: if the value contains special characters like To fix it, wrap the cron expression in double quotes like this: SPEEDTEST_SCHEDULE: "5 * * * *"This ensures that |
Beta Was this translation helpful? Give feedback.
I'd previously tried that (without the space) and it didn't work, but in looking at my
docker-compose.ymlagain to go try it out with the space, I noticed something even sillier... I was using a colon instead of an equals sign like everything else.SPEEDTEST_SCHEDULE="5 * * * *"works perfectly fine. I feel really dumb, and I really appreciate your response because it prompted me to look at my syntax differently.