diff --git a/src/postgresql-client/devcontainer-feature.json b/src/postgresql-client/devcontainer-feature.json index 86ee3ca92..308c3d126 100644 --- a/src/postgresql-client/devcontainer-feature.json +++ b/src/postgresql-client/devcontainer-feature.json @@ -1,7 +1,7 @@ { "name": "PostgreSQL Client", "id": "postgresql-client", - "version": "1.1.0", + "version": "1.2.0", "description": "PostgreSQL is a powerful, open source object-relational database system that uses and extends the SQL language combined with many features that safely store and scale the most complicated data workloads.", "options": { "version": { @@ -10,7 +10,8 @@ "13", "14", "15", - "16" + "16", + "17" ], "default": "13", "description": "Select the major version of postgres" diff --git a/src/postgresql-client/install.sh b/src/postgresql-client/install.sh index 4550fe238..d39571bb7 100644 --- a/src/postgresql-client/install.sh +++ b/src/postgresql-client/install.sh @@ -2,7 +2,7 @@ # Maintainer: John Rowley -TARGET_POSTGRESQL_VERSION="${VERSION:-"14"}" +TARGET_POSTGRESQL_VERSION="${VERSION:-"13"}" set -e @@ -90,4 +90,4 @@ apt-get -y install postgresql-client-${TARGET_POSTGRESQL_VERSION} # Clean up rm -rf /var/lib/apt/lists/* -echo "Done!" \ No newline at end of file +echo "Done!"