Skip to content

Commit 44679e9

Browse files
feat: add v18 beta images (#243)
Signed-off-by: Niccolò Fei <[email protected]> Signed-off-by: Gabriele Bartolini <[email protected]> Co-authored-by: Gabriele Bartolini <[email protected]>
1 parent 6e0fad5 commit 44679e9

File tree

5 files changed

+27
-12
lines changed

5 files changed

+27
-12
lines changed

Debian/18/bookworm/.versions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"BARMAN_VERSION": "3.14.0",
3+
"IMAGE_RELEASE_VERSION": "1",
4+
"POSTGRES_IMAGE_LAST_UPDATED": "2025-07-01T14:09:06.900678Z",
5+
"POSTGRES_IMAGE_VERSION": "18beta1-bookworm"
6+
}

Debian/18/bullseye/.versions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"BARMAN_VERSION": "3.14.0",
3+
"IMAGE_RELEASE_VERSION": "1",
4+
"POSTGRES_IMAGE_LAST_UPDATED": "2025-07-01T08:11:13.699314Z",
5+
"POSTGRES_IMAGE_VERSION": "18beta1-bullseye"
6+
}

Debian/Dockerfile-beta.template

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ LABEL org.opencontainers.image.description="This Docker image contains PostgreSQ
2828
COPY requirements.txt /
2929

3030
# Install additional extensions
31-
RUN set -xe; \
32-
apt-get update; \
33-
apt-get install -y --no-install-recommends \
34-
"postgresql-${PG_MAJOR}-pgvector" \
35-
; \
36-
rm -fr /tmp/* ; \
37-
rm -rf /var/lib/apt/lists/*;
31+
# RUN set -xe; \
32+
# apt-get update; \
33+
# apt-get install -y --no-install-recommends \
34+
# "postgresql-${PG_MAJOR}-pgvector" \
35+
# ; \
36+
# rm -fr /tmp/* ; \
37+
# rm -rf /var/lib/apt/lists/*;
3838

3939
# Install barman-cloud
4040
RUN set -xe; \

README.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,13 @@
1111

1212
# CNPG PostgreSQL Container Images
1313

14-
This repository provides maintenance scripts for generating immutable
15-
application containers for all supported PostgreSQL versions (13 to 17).
16-
These containers are designed to serve as operands for the
17-
[CloudNativePG (CNPG) operator](https://cloudnative-pg.io) in Kubernetes
18-
environments.
14+
This repository provides maintenance scripts for generating **immutable
15+
application containers** for all supported PostgreSQL versions (13 to 17),
16+
as well as for PostgreSQL 18 beta.
17+
18+
These containers are designed to serve as **operands** for the
19+
[CloudNativePG (CNPG) operator](https://cloudnative-pg.io)
20+
within Kubernetes environments.
1921

2022
## Key Features
2123

lib/repo_funcs.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ generate_postgres() {
9797
fi
9898

9999
# Update requirements.txt
100+
mkdir -p "$versionDir"
100101
echo "$requirements" > "$versionDir/requirements.txt"
101102

102103
# Output the image being updated

0 commit comments

Comments
 (0)