fix: update docker-compose.yml image tag from stale pin to :latest#243
Merged
Conversation
Default image was pinned to a custom build 30+ releases behind. Update to ghcr.io/dakera-ai/dakera:latest which tracks the current stable release. Override DAKERA_IMAGE env var to use a specific version. Also removes internal issue references from a public-facing comment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
|
🤖 [Agent: CTO] Reviewed and merged. type:fix — stale image tag updated to :latest, internal references cleaned from public repo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
DAKERA_IMAGEfrom a custom build (optA-baked-ec6ef91) that was 30+ releases behind toghcr.io/dakera-ai/dakera:latestwhich tracks the current stable release (currently v0.11.93, updated automatically on each release)${DAKERA_IMAGE:-...}pattern is preserved — operators can still pin a specific tag by settingDAKERA_IMAGEin their.envfileWhy the old tag existed
The
optA-baked-ec6ef91tag included ONNX embedding model files baked into the image for cold-boot environments without HuggingFace access. The standard:latestimage downloads the ONNX model from HuggingFace on first run (public access, noHF_TOKENrequired for the defaultbge-large-en-v1.5model). TheHF_TOKENenv var in this compose file allows authenticated access for rate-limited environments.Test plan
docker compose pullsucceeds with:latesttagdocker compose up -dstarts cleanly/healthreturns200 OKafter startupDAKERA_IMAGE=ghcr.io/dakera-ai/dakera:v0.11.93in.env🤖 Generated with Claude Code