Fix Release workflow failure by building database/redis package images locally#6
Draft
Copilot wants to merge 2 commits into
Draft
Fix Release workflow failure by building database/redis package images locally#6Copilot wants to merge 2 commits into
Copilot wants to merge 2 commits into
Conversation
Agent-Logs-Url: https://github.com/dappnode/DAppNodePackage-Honcho/sessions/d58b5f08-da97-4e9f-a424-c91ddfc14e5a Co-authored-by: Pol-Lanski <19168735+Pol-Lanski@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job Release
Fix Release workflow failure by building database/redis package images locally
May 23, 2026
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.
The
Releasejob failed while publishing because the packaging step attempted to pulldatabase.honcho.dnp.dappnode.eth:0.1.0, which is not published in a registry. This change makesdatabaseandredisfirst-class build services so release packaging no longer depends on external pulls for these internal runtime images.Root cause addressed
@dappnode/dappnodesdk publishtreateddatabase/redisas external images and attempteddocker pullon package-tagged names that do not exist remotely.Compose changes
databaseandredisindocker-compose.yml.New minimal build contexts
database/Dockerfile:FROM pgvector/pgvector:pg15redis/Dockerfile:FROM redis:7-alpineResulting packaging behavior
databaseandredisare now built during package image build flow, avoiding the failing external pull path in the Release job.