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

Filter by extension

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 12/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/alpine-s6:alpine3.18-5.2.6
FROM bfren/alpine-s6:alpine3.18-5.3.0

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

Expand Down
1 change: 1 addition & 0 deletions 13/ALPINE_EDITION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.19
2 changes: 1 addition & 1 deletion 13/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/alpine-s6:alpine3.19-5.2.6
FROM bfren/alpine-s6:alpine3.19-5.3.0

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

Expand Down
2 changes: 1 addition & 1 deletion 14/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/alpine-s6:alpine3.19-5.2.6
FROM bfren/alpine-s6:alpine3.20-5.3.0

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

Expand Down
2 changes: 1 addition & 1 deletion 15/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/alpine-s6:alpine3.19-5.2.6
FROM bfren/alpine-s6:alpine3.20-5.3.0

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

Expand Down
2 changes: 1 addition & 1 deletion 16/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bfren/alpine-s6:alpine3.19-5.2.6
FROM bfren/alpine-s6:alpine3.20-5.3.0

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

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.4
3.2.5
4 changes: 2 additions & 2 deletions generate-dockerfiles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euo pipefail

docker pull bfren/alpine

BASE_VERSION="5.2.6"
BASE_VERSION="5.3.0"
echo "Base: ${BASE_VERSION}"

POSTGRESQL_VERSIONS="12 13 14 15 16"
Expand All @@ -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.19"
ALPINE_EDITION="3.20"
fi

DOCKERFILE=$(docker run \
Expand Down