I have two images, and I can successfully create VMs with them.
But both on the registry web page (https://fly.io/apps/<my app name>/registry
)
And with the CLI command: flyctl releases --image -a <my app name>
I don’t get any results
Did you by any chance build these images locally and pushed them directly to the Fly registry?
Images uploaded this way can be used to deploy (referred to by tag, for example) but they won’t show in registry or releases unless they were built as part of a fly deploy
run; this is because only a fly deploy
-generated image is tracked in the database that powers registry and releases. Data here does not come directly from the Fly registry (despite the /registry
URL) - Docker registries don’t usually provide a list of images in them, they’re more of a tag → image referenceable store.
- Daniel
Thanks.
Understood
Out of curiosity, can the Fly registry be connected to via normal Docker auth? If so, the OP could just do a list images operation via the Docker API.