I’ve been trying to deploy my app but fly keeps giving me an error:
{
"data": {},
"errors": [
{
"message": "You hit a Fly API error with request ID: 01JWRVZD5W73EEMJFMZ8Q1BPEX-iad",
"extensions": {
"code": "SERVER_ERROR",
"fly_request_id": "01JWRVZD5W73EEMJFMZ8Q1BPEX-iad"
}
}
]
}
es
This had been happening for quite a while. I tried to delete the app and launch it again but the error remained. Not sure what’s wrong on my end or my configuration. This error seemed to appear all of a sudden on CI and kept appearing on deploy.
Edit: My fly.toml defines an image to pull from, but I don’t see any logs on my end for some reason where fly tries to pull the image. I moved back to using the builder and it works, however I’d rather build the image on my own infrastructure.
Edit: I did test for sanity’s sake that the image was available from a server in the internet and I was able to pull down the image and see it in my access logs. The image is git.eseymour/docker/fly
if that makes a difference.