Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: EnterpriseDB/docker-postgresql
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9e4ae5239c569f175577cb59cfad9263f4d0ceaf
Choose a base ref
..
head repository: EnterpriseDB/docker-postgresql
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 16f1f45991fcc1fffb8343516755d5c1a99a4d59
Choose a head ref
Showing with 1,899 additions and 1,927 deletions.
  1. +2 −2 Debian/11/.versions.json
  2. +2 −2 Debian/11/Dockerfile
  3. +118 −120 Debian/11/root/requirements.txt
  4. +2 −2 Debian/12/.versions.json
  5. +2 −2 Debian/12/Dockerfile
  6. +118 −120 Debian/12/root/requirements.txt
  7. +2 −2 Debian/13/.versions.json
  8. +2 −2 Debian/13/Dockerfile
  9. +118 −120 Debian/13/root/requirements.txt
  10. +2 −2 Debian/14/.versions.json
  11. +2 −2 Debian/14/Dockerfile
  12. +118 −120 Debian/14/root/requirements.txt
  13. +2 −2 Debian/15/.versions.json
  14. +2 −2 Debian/15/Dockerfile
  15. +118 −120 Debian/15/root/requirements.txt
  16. +2 −2 Debian/16/.versions.json
  17. +2 −2 Debian/16/Dockerfile
  18. +118 −120 Debian/16/root/requirements.txt
  19. +118 −120 Debian/src/root/requirements.txt
  20. +29 −29 IronBank/11/hardening_manifest.yaml
  21. +7 −7 IronBank/11/requirements.txt
  22. +29 −29 IronBank/12/hardening_manifest.yaml
  23. +7 −7 IronBank/12/requirements.txt
  24. +29 −29 IronBank/13/hardening_manifest.yaml
  25. +7 −7 IronBank/13/requirements.txt
  26. +29 −29 IronBank/14/hardening_manifest.yaml
  27. +7 −7 IronBank/14/requirements.txt
  28. +29 −29 IronBank/15/hardening_manifest.yaml
  29. +7 −7 IronBank/15/requirements.txt
  30. +29 −29 IronBank/hardening_manifest/hardening_manifest.yaml
  31. +7 −7 IronBank/requirements_files/pip-packages.txt
  32. +7 −7 IronBank/src/root/requirements.txt
  33. +118 −120 UBI/11/root/requirements.txt
  34. +118 −120 UBI/12/root/requirements.txt
  35. +118 −120 UBI/13/root/requirements.txt
  36. +118 −120 UBI/14/root/requirements.txt
  37. +118 −120 UBI/15/root/requirements.txt
  38. +118 −120 UBI/16/root/requirements.txt
  39. +118 −120 UBI/src/root/requirements.txt
4 changes: 2 additions & 2 deletions Debian/11/.versions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"BARMAN_VERSION": "3.9.0",
"DEBIAN_IMAGE_VERSION": "buster-20231009-slim",
"IMAGE_RELEASE_VERSION": "7",
"DEBIAN_IMAGE_VERSION": "buster-20231030-slim",
"IMAGE_RELEASE_VERSION": "8",
"POSTGRES_VERSION": "11.21-1.pgdg100+1"
}
4 changes: 2 additions & 2 deletions Debian/11/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# vim:set ft=dockerfile:
FROM debian:buster-20231009-slim
FROM debian:buster-20231030-slim

# Do not split the description, otherwise we will see a blank space in the labels
LABEL name="PostgreSQL Container Images" \
vendor="EnterpriseDB" \
url="https://www.enterprisedb.com/" \
version="11.21-1.pgdg100+1" \
release="7" \
release="8" \
summary="PostgreSQL Container images." \
description="This Docker image contains PostgreSQL and Barman Cloud based on Debian buster-slim."

Loading