I have a dockerized app and I set up a CI pipeline for it using CircleCI.
In this workflow, I have tests that if passed, will trigger the build of the docker image and push it to DockerHub.
Then, I have this Linode server where I manually pull this docker image from DockerHub.
The problem is every time I commit code, I also need to wait for the CI workflows to finish so that I can manually update the docker image in Linode.
Is there any way I can automate this so that I can add Continuous Delivery from CircleCI to Linode?