Skip to content

Commit

Permalink
Add support for Postgres 17
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanlonel committed Dec 10, 2024
1 parent 4b45c17 commit 68744fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
REGISTRY: ghcr.io
TEST_TAG: ${{ github.repository }}:test
COMPOSE_FILE: ./docker-compose.test.yml
LATEST_TAG: 16-3.5
LATEST_TAG: 17-3.5

jobs:
build-and-push-image:
Expand All @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
postgres: [16, 15, 14, 13, 12]
postgres: [17, 16, 15, 14, 13, 12]
postgis: ['3.5']

env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Tag labels follow the pattern `X-Y.Z`, where `X` is the *major* Postgres version (starting from version 12) and `Y.Z` is the *major.minor* Postgis version.

The `latest` tag currently corresponds to `16-3.5`.
The `latest` tag currently corresponds to `17-3.5`.

## Usage

Expand Down
4 changes: 2 additions & 2 deletions compose_example/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
services:

postgres:
# image: ivanlonel/postgis-with-extensions:16-3.5
# image: ivanlonel/postgis-with-extensions:17-3.5
build:
context: . # Use image from Dockerfile in current dir
args:
- BASE_IMAGE_TAG=16-3.5
- BASE_IMAGE_TAG=17-3.5
- LOCALE=pt_BR
- ENCODING=UTF-8
command:
Expand Down

0 comments on commit 68744fc

Please sign in to comment.