From 4090b86efa5a86936894eb3013b643283ec93bd8 Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 5 Dec 2025 21:00:48 +0000 Subject: [PATCH 1/3] Bumping version to 4.0.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 0c89fc9..cc868b6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.0 \ No newline at end of file +4.0.1 \ No newline at end of file From 561a824b7a96dd279c199283aa43cb6bf4d996c3 Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 5 Dec 2025 21:01:10 +0000 Subject: [PATCH 2/3] Bumping version to 4.1.0 --- VERSION | 2 +- VERSION_MINOR | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index cc868b6..99eba4d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.1 \ No newline at end of file +4.1.0 \ No newline at end of file diff --git a/VERSION_MINOR b/VERSION_MINOR index 389f774..8a36cd1 100644 --- a/VERSION_MINOR +++ b/VERSION_MINOR @@ -1 +1 @@ -4.0 \ No newline at end of file +4.1 \ No newline at end of file From 616ec6acb83c39744c9be2b4a670b14866b102a3 Mon Sep 17 00:00:00 2001 From: bfren Date: Fri, 5 Dec 2025 21:02:14 +0000 Subject: [PATCH 3/3] Updating to Alpine 3.23 Using latest base images --- 12/Dockerfile | 2 +- 13/Dockerfile | 2 +- 14/Dockerfile | 2 +- 15/ALPINE_EDITION | 1 + 15/Dockerfile | 2 +- 16/Dockerfile | 2 +- 17/Dockerfile | 2 +- generate-dockerfiles.sh | 4 ++-- 8 files changed, 9 insertions(+), 8 deletions(-) create mode 100644 15/ALPINE_EDITION diff --git a/12/Dockerfile b/12/Dockerfile index 6b2e70e..bd6d7c0 100644 --- a/12/Dockerfile +++ b/12/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.18-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.18-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/13/Dockerfile b/13/Dockerfile index 09c8450..510ce3f 100644 --- a/13/Dockerfile +++ b/13/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.19-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.19-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/14/Dockerfile b/14/Dockerfile index 31d4e5f..fde8bb7 100644 --- a/14/Dockerfile +++ b/14/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.20-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.20-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/15/ALPINE_EDITION b/15/ALPINE_EDITION new file mode 100644 index 0000000..93a84c3 --- /dev/null +++ b/15/ALPINE_EDITION @@ -0,0 +1 @@ +3.22 \ No newline at end of file diff --git a/15/Dockerfile b/15/Dockerfile index 6194e95..bedc08c 100644 --- a/15/Dockerfile +++ b/15/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.22-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.22-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/16/Dockerfile b/16/Dockerfile index e01de57..9c0c7aa 100644 --- a/16/Dockerfile +++ b/16/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.22-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.23-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/17/Dockerfile b/17/Dockerfile index 6c78695..2c4dc64 100644 --- a/17/Dockerfile +++ b/17/Dockerfile @@ -1,4 +1,4 @@ -FROM quay.io/bfren/alpine-s6:alpine3.22-6.0.1 +FROM quay.io/bfren/alpine-s6:alpine3.23-6.1.0 LABEL org.opencontainers.image.source="https://github.com/bfren/docker-postgresql" diff --git a/generate-dockerfiles.sh b/generate-dockerfiles.sh index 2f31ced..db70f61 100755 --- a/generate-dockerfiles.sh +++ b/generate-dockerfiles.sh @@ -4,7 +4,7 @@ set -euo pipefail docker pull bfren/alpine -BASE_VERSION="6.0.1" +BASE_VERSION="6.1.0" echo "Base: ${BASE_VERSION}" POSTGRESQL_VERSIONS="12 13 14 15 16 17" @@ -15,7 +15,7 @@ for V in ${POSTGRESQL_VERSIONS} ; do if [ -f "${ALPINE_EDITION_FILE}" ] ; then ALPINE_EDITION=`cat ${ALPINE_EDITION_FILE}` else - ALPINE_EDITION="3.22" + ALPINE_EDITION="3.23" fi DOCKERFILE=$(docker run \