#`evanpelle/openfront-prod:latest` image tag
16 messages · Page 1 of 1 (latest)
Eh?
The docker image does not have a latest tag, to have the latest version hosted it would require to update the image manually.
For example if I'm currently hosting a v0.26.13 I would not be able to automatically update to v0.26.14 when it comes out without manually tracking releases and manually updating the image in my compose.yaml, but with a latest tag this would be possible. One popular tool for such automatic updates is watchtower and it leverages the image sha256 signature, by using a static image tag, usually it's latest, so when the image signature changes it would automatically pull the new image and restart the container with the updated image
@cloud lily
If you want to hop on a call I'm available after 18.30 CEST, or almost any time in the wend. Love the game (not really good at playing but enjoy the process), and really like to help out open source projects.
Sidenote, also I've been checking out the code in the past couple evenings and have some insight i hope could be useful
@cloud lily
so you want to add the latest tag to each release?
that's the deployment script
Basically yes, every time you release a new version the build script should also push the same image with latest tag, if you don't want to dedicate time for this, I can implement it myself and submit a PR
If I understand correctly this one updates your deloyments, and it's not the script that would be involved. After a quick glance at the github actions this should be quick and pretty painless, the change should be done in build.sh
Ok, I made the PR, was scared initially by the amount of github workflows XD, but actually the thing was waaay easier than I though
@cloud lily
PR is merged, can we close this?