Skip to content

feat: add v18 beta images #243

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 10, 2025
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
6 changes: 6 additions & 0 deletions Debian/18/bookworm/.versions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"BARMAN_VERSION": "3.14.0",
"IMAGE_RELEASE_VERSION": "1",
"POSTGRES_IMAGE_LAST_UPDATED": "2025-07-01T14:09:06.900678Z",
"POSTGRES_IMAGE_VERSION": "18beta1-bookworm"
}
6 changes: 6 additions & 0 deletions Debian/18/bullseye/.versions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"BARMAN_VERSION": "3.14.0",
"IMAGE_RELEASE_VERSION": "1",
"POSTGRES_IMAGE_LAST_UPDATED": "2025-07-01T08:11:13.699314Z",
"POSTGRES_IMAGE_VERSION": "18beta1-bullseye"
}
14 changes: 7 additions & 7 deletions Debian/Dockerfile-beta.template
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ LABEL org.opencontainers.image.description="This Docker image contains PostgreSQ
COPY requirements.txt /

# Install additional extensions
RUN set -xe; \
apt-get update; \
apt-get install -y --no-install-recommends \
"postgresql-${PG_MAJOR}-pgvector" \
; \
rm -fr /tmp/* ; \
rm -rf /var/lib/apt/lists/*;
# RUN set -xe; \
# apt-get update; \
# apt-get install -y --no-install-recommends \
# "postgresql-${PG_MAJOR}-pgvector" \
# ; \
# rm -fr /tmp/* ; \
# rm -rf /var/lib/apt/lists/*;

# Install barman-cloud
RUN set -xe; \
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@

# CNPG PostgreSQL Container Images

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

These containers are designed to serve as **operands** for the
[CloudNativePG (CNPG) operator](https://cloudnative-pg.io)
within Kubernetes environments.

## Key Features

Expand Down
1 change: 1 addition & 0 deletions lib/repo_funcs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ generate_postgres() {
fi

# Update requirements.txt
mkdir -p "$versionDir"
echo "$requirements" > "$versionDir/requirements.txt"

# Output the image being updated
Expand Down