Skip to content

Commit d9c8f1c

Browse files
authored
v2.3.27 (#90)
Minor updates * Using latest base images Development updates * Adding --load to run.sh * Using PostgreSQL 15 as default version in run.sh
1 parent 9befa21 commit d9c8f1c

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/alpine-s6:alpine3.18-4.5.6
1+
FROM bfren/alpine-s6:alpine3.18-4.5.7
22

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

13/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/alpine-s6:alpine3.18-4.5.6
1+
FROM bfren/alpine-s6:alpine3.18-4.5.7
22

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

14/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/alpine-s6:alpine3.18-4.5.6
1+
FROM bfren/alpine-s6:alpine3.18-4.5.7
22

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

15/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/alpine-s6:alpine3.18-4.5.6
1+
FROM bfren/alpine-s6:alpine3.18-4.5.7
22

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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.26
1+
2.3.27

generate-dockerfiles.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44

55
docker pull bfren/alpine
66

7-
BASE_REVISION="4.5.6"
7+
BASE_REVISION="4.5.7"
88
echo "Base: ${BASE_REVISION}"
99

1010
POSTGRESQL_VERSIONS="12 13 14 15"

run.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/bin/sh
22

33
IMAGE=`cat VERSION`
4-
POSTGRESQL=${1:-14}
4+
POSTGRESQL=${1:-15}
55

66
docker buildx build \
7+
--load \
78
--build-arg BF_IMAGE=postgresql \
89
--build-arg BF_VERSION=${IMAGE} \
910
-f ${POSTGRESQL}/Dockerfile \

0 commit comments

Comments
 (0)