Skip to content

Commit

Permalink
Merge pull request #282 from SUSE/postgres-15
Browse files Browse the repository at this point in the history
Add PostgreSQL 15
  • Loading branch information
dirkmueller authored Mar 13, 2023
2 parents a055152 + c5fa87b commit 224e31c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bci_build/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -1799,12 +1799,12 @@ def _create_php_bci(
_POSTGRES_LICENSE = license_file.read(-1)


_POSTGRES_MAJOR_VERSIONS = [14, 13, 12, 10]
_POSTGRES_MAJOR_VERSIONS = [15, 14, 13, 12, 10]
POSTGRES_CONTAINERS = [
ApplicationStackContainer(
package_name=f"postgres-{ver}-image",
os_version=os_version,
is_latest=ver == 14,
is_latest=ver == _POSTGRES_MAJOR_VERSIONS[0],
name="postgres",
pretty_name=f"PostgreSQL {ver}",
support_level=SupportLevel.L3,
Expand Down

0 comments on commit 224e31c

Please sign in to comment.