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

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: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
postgresql: [ "12", "13", "14", "15", "16" ]
postgresql: [ "12", "13", "14", "15", "16", "17" ]
runs-on: ubuntu-latest
steps:
-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
postgresql: [ "12", "13", "14", "15", "16" ]
postgresql: [ "12", "13", "14", "15", "16", "17" ]
runs-on: ubuntu-latest
steps:
-
Expand Down
2 changes: 1 addition & 1 deletion 12/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.18-5.4.15
FROM ghcr.io/bfren/alpine-s6:alpine3.18-5.5.0

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"

Expand Down
2 changes: 1 addition & 1 deletion 13/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.19-5.4.15
FROM ghcr.io/bfren/alpine-s6:alpine3.19-5.5.0

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"

Expand Down
1 change: 1 addition & 0 deletions 14/ALPINE_EDITION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.20
2 changes: 1 addition & 1 deletion 14/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.4.15
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.5.0

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"

Expand Down
2 changes: 1 addition & 1 deletion 14/overlay/tmp/POSTGRESQL_BUILD
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.14-r0
14.15-r0
2 changes: 1 addition & 1 deletion 14/overlay/tmp/POSTGRESQL_MINOR
Original file line number Diff line number Diff line change
@@ -1 +1 @@
14.14
14.15
2 changes: 1 addition & 1 deletion 15/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.4.15
FROM ghcr.io/bfren/alpine-s6:alpine3.21-5.5.0

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"

Expand Down
2 changes: 1 addition & 1 deletion 15/overlay/tmp/POSTGRESQL_BUILD
Original file line number Diff line number Diff line change
@@ -1 +1 @@
15.9-r0
15.10-r0
2 changes: 1 addition & 1 deletion 15/overlay/tmp/POSTGRESQL_MINOR
Original file line number Diff line number Diff line change
@@ -1 +1 @@
15.9
15.10
2 changes: 1 addition & 1 deletion 16/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.20-5.4.15
FROM ghcr.io/bfren/alpine-s6:alpine3.21-5.5.0

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"

Expand Down
2 changes: 1 addition & 1 deletion 16/overlay/tmp/POSTGRESQL_BUILD
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.5-r0
16.6-r0
2 changes: 1 addition & 1 deletion 16/overlay/tmp/POSTGRESQL_MINOR
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.5
16.6
22 changes: 22 additions & 0 deletions 17/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM ghcr.io/bfren/alpine-s6:alpine3.21-5.5.0

LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql"

ARG BF_IMAGE
ARG BF_PUBLISHING
ARG BF_VERSION

EXPOSE 5432

COPY ./overlay /
COPY ./17/overlay /

ENV \
# set to "1" to compress backup sql files
BF_PG_BACKUP_COMPRESS_FILES="0" \
# the duration for which backups will be kept
BF_PG_BACKUP_KEEP_FOR="28day"

RUN bf-install

VOLUME [ "/backup", "/data" ]
1 change: 1 addition & 0 deletions 17/overlay/tmp/POSTGRESQL_BUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
17.2-r0
1 change: 1 addition & 0 deletions 17/overlay/tmp/POSTGRESQL_MINOR
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
17.2
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.18
3.3.0
2 changes: 1 addition & 1 deletion VERSION_MINOR
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2
3.3
6 changes: 3 additions & 3 deletions generate-dockerfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ set -euo pipefail

docker pull bfren/alpine

BASE_VERSION="5.4.15"
BASE_VERSION="5.5.0"
echo "Base: ${BASE_VERSION}"

POSTGRESQL_VERSIONS="12 13 14 15 16"
POSTGRESQL_VERSIONS="12 13 14 15 16 17"
for V in ${POSTGRESQL_VERSIONS} ; do

echo "PostgreSQL ${V}"
ALPINE_EDITION_FILE="${V}/ALPINE_EDITION"
if [ -f "${ALPINE_EDITION_FILE}" ] ; then
ALPINE_EDITION=`cat ${ALPINE_EDITION_FILE}`
else
ALPINE_EDITION="3.20"
ALPINE_EDITION="3.21"
fi

DOCKERFILE=$(docker run \
Expand Down
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

IMAGE=`cat VERSION`
POSTGRESQL=${1:-16}
POSTGRESQL=${1:-17}

docker buildx build \
--load \
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

IMAGE=postgresql
VERSION=`cat VERSION`
POSTGRESQL=${1:-16}
POSTGRESQL=${1:-17}
TAG=${IMAGE}-test

docker buildx build \
Expand Down
Loading