File tree Expand file tree Collapse file tree 4 files changed +27
-3
lines changed
Expand file tree Collapse file tree 4 files changed +27
-3
lines changed Original file line number Diff line number Diff line change 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" ]
Original file line number Diff line number Diff line change 1+ 17.2-r0
Original file line number Diff line number Diff line change 1+ 17.2
Original file line number Diff line number Diff line change @@ -4,18 +4,18 @@ set -euo pipefail
44
55docker pull bfren/alpine
66
7- BASE_VERSION=" 5.4.15 "
7+ BASE_VERSION=" 5.5.0 "
88echo " Base: ${BASE_VERSION} "
99
10- POSTGRESQL_VERSIONS=" 12 13 14 15 16"
10+ POSTGRESQL_VERSIONS=" 12 13 14 15 16 17 "
1111for 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 \
You can’t perform that action at this time.
0 commit comments