I keep getting this error when I try deploying my app.
Hey, this looks confusing indeed. Maybe I can help. Now I am assuming that you want to deploy an existing Docker image, instead of a standard fly deploy
which uses Dockerfile
and fly.toml
to build and deploy from source, automatically.
First, I noticed that there is no existing image named 0xea5f6e04646f40b452c3ec2f99005902a fad1759f4159a622471862656190
You should check that the image you’re trying to push exists by looking at docker images
.
Then, you need to correctly tag, push and deploy, like in the following example. I have an existing image named myimage
with a tag sometag
.
fly auth docker
docker tag myimage registry.fly.io/blockticke-3:sometag
docker push registry.fly.io/blockticke-3:sometag
fly deploy -a blockticke-3 -i registry.fly.io/blockticke-3:sometag
Alternatively, you might want to setup a fly.toml
and Dockerfile
so fly deploy
works on its own. Let me know if you need help setting that up.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.