Add 19.x builds (currently beta 1)#1415
Merged
Merged
Conversation
|
@yosifkit Is there a way to point to this and provide an image name so I can run a Postgres 19.1 RC1 with Docker locally? Thanks. |
Member
Author
|
Yeah, that'll be something like one of the below and you'll have a $ docker buildx build -t postgres:19beta1-trixie 'https://github.com/infosiftr/postgres.git#19-rc:19/trixie'
$ # alternatively using the PR as the reference
$ docker buildx build -t postgres:19beta1-trixie 'https://github.com/docker-library/postgres.git#refs/pull/1415/merge:19/trixie' |
|
Thank you @yosifkit, up and running: I ran: docker buildx build -t postgres:19beta1-trixie 'https://github.com/infosiftr/postgres.git#19-rc:19/trixie'Then I ran: docker run \
--name pg19 \
--env POSTGRES_USER=postgres \
--env POSTGRES_PASSWORD=postgres \
--detach postgres:19beta1-trixieAnd connected to psql via: docker container exec -it pg19 psql -U postgres
psql (19beta1 (Debian 19~beta1-1.pgdg13+1))
Type "help" for help.
postgres=# |
tianon
approved these changes
Jun 5, 2026
yosifkit
pushed a commit
to docker-library/official-images
that referenced
this pull request
Jun 6, 2026
Changes: - docker-library/postgres@3248583: Add 19 beta 1 (docker-library/postgres#1415) Co-authored-by: Docker Library Bot <doi+docker-library-bot@docker.com>
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.
https://www.postgresql.org/about/news/postgresql-19-beta-1-released-3313/