Docker image tagged versions #3320
-
Hey, First: Amazing project! I was blown away when my buddy showed me this last Friday! Thank you to all the contributors of this project for making something like this accessible to mere mortals. My question comes as I'm trying to write a Helm chart for this app. I based it off of the production docker compose file. In there, I noticed it's pointing at the docker stable tag, which, based off of the GitHub releases, is version While the (If I missed something obvious in the repo/docs that explains this, my apologies.) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@mddeff thanks for your kind words 👍 You are right that From looking through the image digests for stable and 0.7.4 it appears they are mostly the same, except for this step: The docker build behaves differently if it is running from a git For now, you can continue under the assumption that Please note that for the next major release ( I hope that you enjoy using our software, and thanks for pointing this out. |
Beta Was this translation helpful? Give feedback.
-
@mddeff were you successful in creating a helm chart? Might be an interesting deployment method. |
Beta Was this translation helpful? Give feedback.
@mddeff thanks for your kind words 👍
You are right that
0.7.4
andstable
should be the same image. That is how it is intended. I was not aware that the images were building differentlyFrom looking through the image digests for stable and 0.7.4 it appears they are mostly the same, except for this step:
The docker build behaves differently if it is running from a git
tag
or abranch
. So functionally the images are the same but one contains some more git history.For now, you can continue under the assumption that
stable
always points to the latest release.Please note that for the next major release (
0.8.0
) we have changed the way that the docker build works, so this particular problem wi…