fix(docker): pin doltgresql image to 0.56.7 across template and dev c… - #3472
Open
Adityakk9031 wants to merge 1 commit into
Open
fix(docker): pin doltgresql image to 0.56.7 across template and dev c…#3472Adityakk9031 wants to merge 1 commit into
Adityakk9031 wants to merge 1 commit into
Conversation
🦋 Changeset detectedLatest commit: 4967f77 The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Adityakk9031
requested a deployment
to
inkeep-oss-sync
July 21, 2026 17:54 — with
GitHub Actions
Waiting
Contributor
|
Thanks for the contribution! What happens next:
|
Author
|
@robert-inkeep and @tim-inkeep have a look |
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
Fixes #3465 where running
npx @inkeep/create-agentsorpnpm setup-devfailed during project seeding /inkeep pushwith HTTP 500 (SELECT * FROM dolt_tagscaused byerror: role "appuser" does not exist).Root Cause
While root
docker-compose.ymlexplicitly pinneddolthub/doltgresql:0.56.7, template and local development docker-compose files used unpinneddolthub/doltgresql:latestwithpull_policy: always. Recent upstream builds ofdolthub/doltgresql:latestintroduced a wire-protocol session authorization regression when queried over host-port forwarding proxies (e.g.localhost:5432on Docker Desktop), breakingdolt_tags/dolt_branchesqueries for host-bound Node services.Changes
Pinned Doltgres Docker Image:
create-agents-template/docker-compose.db.ymlcreate-agents-template/docker-compose.ymldocker-compose.dbs.ymldocker-compose.isolated.ymlUpdated image from
dolthub/doltgresql:latesttodolthub/doltgresql:0.56.7and removedpull_policy: always.Added Changeset:
@inkeep/create-agentsin.changeset/pin-doltgres-image-tag.md.Verification
dolthub/doltgresql:0.56.7matching rootdocker-compose.yml.