Skip to content

Commit

Permalink
Add support for Postgres 16
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanlonel committed Nov 28, 2023
1 parent 5f5ebfa commit 6e38d9b
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: 15-3.4
LATEST_TAG: 16-3.4

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

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 `15-3.4`.
The `latest` tag currently corresponds to `16-3.4`.

## Usage

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

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

0 comments on commit 6e38d9b

Please sign in to comment.