File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v14.12-4] - 2024-10-11
11
+ ### Added
12
+ - [ #38 ] Extensions from ` postgresql-contrib `
13
+
10
14
## [ v14.12-3] - 2024-09-23
11
15
### Changed
12
16
- Relicense to AGPL-3.0-only
Original file line number Diff line number Diff line change @@ -18,22 +18,19 @@ RUN set -x -o errexit \
18
18
FROM registry.cloudogu.com/official/base:3.20.2-1
19
19
20
20
LABEL NAME="official/postgresql" \
21
- VERSION="14.12-3 " \
21
+ VERSION="14.12-4 " \
22
22
23
23
24
24
ENV LANG=en_US.utf8 \
25
25
PGDATA=/var/lib/postgresql \
26
26
POSTGRESQL_VERSION=14.12-r0
27
27
28
- # install postgresql and gosu
29
- # Note: the current postgresql version from alpine is installed
30
- # https://pkgs.alpinelinux.org/packages?name=postgresql&branch=v3.12&arch=x86_64
31
28
RUN set -x -o errexit \
32
29
&& set -o nounset \
33
30
&& set -o pipefail \
34
31
&& apk update \
35
32
&& apk upgrade \
36
- && apk add --no-cache --update postgresql14="${POSTGRESQL_VERSION}"
33
+ && apk add --no-cache --update postgresql14="${POSTGRESQL_VERSION}" postgresql14-contrib= "${POSTGRESQL_VERSION}"
37
34
38
35
COPY resources/ /
39
36
COPY --from=builder /build /
Original file line number Diff line number Diff line change 1
1
{
2
2
"Name" : " official/postgresql" ,
3
- "Version" : " 14.12-3 " ,
3
+ "Version" : " 14.12-4 " ,
4
4
"DisplayName" : " PostgreSQL" ,
5
5
"Description" : " PostgreSQL Database." ,
6
6
"Url" : " https://www.postgresql.org/" ,
You can’t perform that action at this time.
0 commit comments