Recent update prevents deploy from local docker image?

Hi, I recently updated flyctl and I can no longer deploy my local docker image.

 flyctl deploy                                                                                                                                                                                            (08-22 09:23)
==> Verifying app config
--> Verified app config
==> Building image
Searching for image 'plumbing:latest' remotely...
Error failed to fetch an image or build from source: Authentication required to access image "docker.io/library/plumbing:latest"

If I do LOG_LEVEL=debug, it looks like it can’t connect to the local docker daemon.

==> Verifying app config
--> Verified app config
==> Building image
DEBUG trying remote docker daemon
DEBUG Trying 'Local Image Reference' strategy
DEBUG local docker daemon not available, skipping
DEBUG result image:<nil> error:<nil>
DEBUG Trying 'Remote Image Reference' strategy
Searching for image 'plumbing:latest' remotely...

fly version: flyctl v0.0.378 darwin/amd64 Commit: e72b62b6 BuildDate: 2022-08-21T09:58:58Z

Is anyone else experiencing this?

Try running fly deploy --local-only and see if it works? We’re now defaulting to remote builders, so it may not be looking at your local Docker setup to find an image.

1 Like

That worked! Thanks Kurt.

For the future, where is the best place to learn about updates like this? Is it github releases?