I’m reaching errors while trying to deploy a new release of my app:
$ fly deploy
==> Verifying app config
Validating /Users/username/code/my/app/fly.toml
✓ Configuration is valid
--> Verified app config
==> Building image
WARN Failed to start remote builder heartbeat: server returned a non-200 status code: 500
Error: failed to fetch an image or build from source: error connecting to docker: server returned a non-200 status code: 500
I tried to destroy the builder and recreate it, but no luck: the error persists.
After activating the logs it says this:
DEBUG --> POST https://api.fly.io/graphql
DEBUG {
"query": "mutation($input: EnsureMachineRemoteBuilderInput!) { ensureMachineRemoteBuilder(input: $input) { machine { id state ips { nodes { family kind ip } } }, app { name organization { id slug } } } }",
"variables": {
"input": {
"appName": "removed_for_privacy",
"organizationId": null
}
}
}
DEBUG {}
DEBUG <-- 500 https://api.fly.io/graphql (419.3ms)
DEBUG {
"errors": [
{
"message": "You hit a Fly API error with request ID: 01HT2S98TN53EPHR5PMXY06JKD-mad",
"extensions": {
"code": "SERVER_ERROR",
"fly_request_id": "01HT2S98TN53EPHR5PMXY06JKD-mad"
}
}
],
"data": {}
}
DEBUG result image:<nil> error:error connecting to docker: server returned a non-200 status code: 500
Is there anything I can do to solve this? Is it happening to anyone else?