fix(registry): repoint morph and dogecoin to live image repositories - #9
Merged
Conversation
morph: ghcr.io/morphprotocol/node returns 403 DENIED — the org renamed to morph-l2. Tags there drop the leading "v" (0.4.0..0.5.7), so the TagPattern loses the v-anchor and the default jumps to 0.5.7. dogecoin: ruimarinho/dogecoin is gone (404). fiftysix/dogecoin-core is a maintained community image (1.14.7..1.14.9, rebuilt Dec 2024) and the only public option — no official dogecoin/dogecoin image exists. Context: picked these out of the moved-repo registry survey, where six chains were returning 404/403. Verified both replacements live against GHCR and Docker Hub tag APIs, then ran versioncheck per-chain — morph and dogecoin now resolve with no registry error. Spent ~1h cross- checking candidate repos and confirming tag shapes.
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.
What
Two chains had default images pointing at repositories that no longer serve them. This repoints both to verified-live locations.
ghcr.io/morphprotocol/node:v0.3.0→ 403 DENIEDghcr.io/morph-l2/node:0.5.7ruimarinho/dogecoin:1-alpine→ 404 (repo deleted)fiftysix/dogecoin-core:1.14.9Details
morphprotocoltomorph-l2. Tags on the new repo drop the leadingv(0.4.0..0.5.7), soTagPatternloses itsvanchor (^v\d+...→^\d+...).ruimarinho/dogecoinis gone.fiftysix/dogecoin-coreis a maintained community image (1.14.7..1.14.9, rebuilt Dec 2024) and the only public option; no officialdogecoin/dogecoinimage exists.Both
VersionPolicy()(repository + tag pattern) and the pinned default inversions_gen.goare updated.Verification
go build ./...+go test ./internal/adapters/passmorph-l2/node) and Docker Hub (fiftysix/dogecoin-core) confirm the tagsversioncheck --chain morph/--chain dogecoinresolve with no registry error (previously 403/404)Part of the moved-repo registry survey covering six chains returning 404/403.
🤖 Generated with Claude Code