Currently, our deployment flow is
- use a github workflow to build and upload 2 docker images to dockerhub
- update image on railway
is there some way to automatically trigger a redeploy? Any of the following will help
- some webhook to trigger a redeploy for a specific service (but not everything in the environment because I have other dbs/redis). If this is possible, I will just post the docker image to tag -latest and the image name won't change.
- some way to use the railway cli to update a docker image for a service? then i can just call the railway cli from my CI action to trigger a rebuild
- some setting that will auto-pull new docker images when they are created in a repo