Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Changed
- [#62] Update postgresql to 17.9

## [v14.21-2] - 2026-03-31
### Changed
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PG_MAJOR=14
ARG PG_MINOR=21
ARG PG_MAJOR=17
ARG PG_MINOR=9

ARG ALPINE_VERSION=3.23

Expand All @@ -21,7 +21,7 @@ FROM postgres:${PG_MAJOR}.${PG_MINOR}-alpine${ALPINE_VERSION}
ARG PG_MAJOR

LABEL NAME="official/postgresql" \
VERSION="14.21-2" \
VERSION="17.9-0" \
maintainer="hello@cloudogu.com"

# change the UID and GID for the postgres-user to 1000 so it matches the volume-mounts
Expand Down Expand Up @@ -58,4 +58,4 @@ EXPOSE 5432

ENTRYPOINT ["/startup.sh"]

CMD ["postgres"]
CMD ["postgres"]
2 changes: 1 addition & 1 deletion dogu.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Name": "official/postgresql",
"Version": "14.21-2",
"Version": "17.9-0",
"DisplayName": "PostgreSQL",
"Description": "PostgreSQL Database.",
"Url": "https://www.postgresql.org/",
Expand Down