Every deployment image is tagged like
Successfully tagged
registry.fly.io/<app-id>:<image-label>
Since I am using git, I am setting image-label as git commit sha. So my image tag is like registry.fly.io/<app-id>:<commit-sha>
Questions:
- Where can I see the list of images (defined by
image-tag) that were deployed?flyctl releasesshows no such information. - How to know which image the current deployment is using?
- Are these images public and accessible to others (outside the organization account)? So if others can deploy image directly without building.
- How long are the images in the registry available?
flyctl deployhas an option--image=string :: Image tag or id to deploy. Assumingtagis theimage-tag, what is theidhere?