Skip to content

Commit a67662f

Browse files
committed
Adding PostgreSQL 17.2
1 parent cbc9c70 commit a67662f

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

17/Dockerfile

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
FROM ghcr.io/bfren/alpine-s6:alpine3.21-5.5.0
2+
3+
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"
4+
5+
ARG BF_IMAGE
6+
ARG BF_PUBLISHING
7+
ARG BF_VERSION
8+
9+
EXPOSE 5432
10+
11+
COPY ./overlay /
12+
COPY ./17/overlay /
13+
14+
ENV \
15+
# set to "1" to compress backup sql files
16+
BF_PG_BACKUP_COMPRESS_FILES="0" \
17+
# the duration for which backups will be kept
18+
BF_PG_BACKUP_KEEP_FOR="28day"
19+
20+
RUN bf-install
21+
22+
VOLUME [ "/backup", "/data" ]

17/overlay/tmp/POSTGRESQL_BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
17.2-r0

17/overlay/tmp/POSTGRESQL_MINOR

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
17.2

generate-dockerfiles.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ set -euo pipefail
44

55
docker pull bfren/alpine
66

7-
BASE_VERSION="5.4.15"
7+
BASE_VERSION="5.5.0"
88
echo "Base: ${BASE_VERSION}"
99

10-
POSTGRESQL_VERSIONS="12 13 14 15 16"
10+
POSTGRESQL_VERSIONS="12 13 14 15 16 17"
1111
for V in ${POSTGRESQL_VERSIONS} ; do
1212

1313
echo "PostgreSQL ${V}"
1414
ALPINE_EDITION_FILE="${V}/ALPINE_EDITION"
1515
if [ -f "${ALPINE_EDITION_FILE}" ] ; then
1616
ALPINE_EDITION=`cat ${ALPINE_EDITION_FILE}`
1717
else
18-
ALPINE_EDITION="3.20"
18+
ALPINE_EDITION="3.21"
1919
fi
2020

2121
DOCKERFILE=$(docker run \

0 commit comments

Comments
 (0)