FCR Forecasts on Jetstream 2.0 need to be running on timer at the moment. While it is possible to run it manually by executing docker run command in the terminal or from a bash script, running the same command or bash script with crontab leads to an error due to --entrypoint parameter in the docker run command. Apparently, crontab changes the path of the --entrypoint causing the command to fail. To make it work, I used a systemd service and timer.
FCR Forecasts on Jetstream 2.0 need to be running on timer at the moment. While it is possible to run it manually by executing
docker run
command in the terminal or from a bash script, running the same command or bash script with crontab leads to an error due to--entrypoint
parameter in thedocker run
command. Apparently, crontab changes the path of the--entrypoint
causing the command to fail. To make it work, I used asystemd
service and timer.