File tree Expand file tree Collapse file tree
components/image-postgres Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818# see project for compatibility details:
1919# https://github.com/pgaudit/pgaudit#postgresql-version-compatibility
2020PGAUDIT_PKG="$(case "$POSTGRES_MAJOR_VERSION" in \
21- 13) echo pgaudit15_13 ;; \
2221 14) echo pgaudit16_14 ;; \
2322 15) echo pgaudit17_15 ;; \
2423 *) echo "pgaudit_${POSTGRES_MAJOR_VERSION}" ;; \
Original file line number Diff line number Diff line change 44
55FROM localhost/crunchy-postgres:latest
66
7- ARG POSTGRES_UPGRADE_VERSIONS="13 14 15 16 17"
7+ ARG POSTGRES_UPGRADE_VERSIONS="14 15 16 17 18 "
88ARG BASE_VERSION=ubi9
99
1010USER 0
@@ -23,7 +23,6 @@ PKGS="$(for POSTGRES_VERSION in ${POSTGRES_UPGRADE_VERSIONS}; do
2323POSTGRES_MAJOR_VERSION="${POSTGRES_VERSION%.*}"
2424
2525case "$POSTGRES_MAJOR_VERSION" in
26- 13) PGAUDIT_PKG=pgaudit15_13 ;;
2726 14) PGAUDIT_PKG=pgaudit16_14 ;;
2827 15) PGAUDIT_PKG=pgaudit17_15 ;;
2928 *) PGAUDIT_PKG="pgaudit_${POSTGRES_MAJOR_VERSION}" ;;
You can’t perform that action at this time.
0 commit comments