Skip to content

Commit 021fec2

Browse files
committed
fix(registry): repoint morph and dogecoin to live image repositories
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.
1 parent d6345d5 commit 021fec2

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

internal/adapters/dogecoin.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ func (a *dogecoinAdapter) ContainerPorts(_ chainsv1alpha2.ChainInstanceSpec) []c
116116
func (a *dogecoinAdapter) VersionPolicy() ChainVersionPolicy {
117117
return ChainVersionPolicy{
118118
Registry: "docker.io",
119-
Repository: "ruimarinho/dogecoin",
120-
TagPattern: `^\d+-alpine$`,
119+
Repository: "fiftysix/dogecoin-core",
120+
TagPattern: `^\d+\.\d+\.\d+$`,
121121
}
122122
}
123123

internal/adapters/morph.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ func (a *morphAdapter) DefaultResources() ResourceDefaults {
7777
func (a *morphAdapter) VersionPolicy() ChainVersionPolicy {
7878
return ChainVersionPolicy{
7979
Registry: "ghcr.io",
80-
Repository: "morphprotocol/node",
81-
TagPattern: `^v\d+\.\d+\.\d+$`,
80+
Repository: "morph-l2/node",
81+
TagPattern: `^\d+\.\d+\.\d+$`,
8282
}
8383
}
8484

internal/adapters/versions_gen.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)