Skip to content

Commit 7b9ebd6

Browse files
committed
Update to pg_partman 5.1.0 and add Postgres 17 support
1 parent 9852f9c commit 7b9ebd6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/build-and-publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
build:
1717
strategy:
1818
matrix:
19-
postgres_version: [13, 14, 15, 16]
19+
postgres_version: [13, 14, 15, 16, 17]
2020
major: [4,5]
2121
include:
2222
- partman_version: v4.7.4
2323
partman_checksum: 28e4fdb83ecc16525959ae9593bfbfd077db429285f5f7d8e2468bfff6cbdbf2c81ace79a9ddeb4f00f51eb709163dbd713fe6b221a432ac2ff766f98d4cf8e4
2424
default: "true"
2525
major: 4
26-
- partman_version: v5.0.0
27-
partman_checksum: 7a1b41732eb063a94cee7a589a252055e3a33ccf0ddfe5cddba22978ffd306cf263312b172355c930d355aea0f5f5530fd2344520791df9cb05a38614c521f9f
26+
- partman_version: v5.1.0
27+
partman_checksum: 42f527f93c7c4da957a84d4b81dafc4b37beed8fe66d2b4d908386c8ed2256f7356a8af7bdc8b0f4281c65a6ceded8d114a0c7db715dd2cc093a6b15c5ae23f4
2828
default: "false"
2929
major: 5
3030
exclude:

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
ARG POSTGRESQL_VERSION="13"
1+
ARG POSTGRESQL_VERSION="16"
22
FROM bitnami/postgresql:$POSTGRESQL_VERSION
33
LABEL org.opencontainers.image.source="https://github.com/dbsystel/postgresql-partman-container"
4-
ARG PARTMAN_VERSION="v4.7.4"
4+
ARG PARTMAN_VERSION="v5.1.0"
55
LABEL de.dbsystel.partman-version=$PARTMAN_VERSION
66
ARG POSTGRESQL_VERSION
77
LABEL de.dbsystel.postgres-version=$POSTGRESQL_VERSION
8-
ARG PARTMAN_CHECKSUM="28e4fdb83ecc16525959ae9593bfbfd077db429285f5f7d8e2468bfff6cbdbf2c81ace79a9ddeb4f00f51eb709163dbd713fe6b221a432ac2ff766f98d4cf8e4"
8+
ARG PARTMAN_CHECKSUM="42f527f93c7c4da957a84d4b81dafc4b37beed8fe66d2b4d908386c8ed2256f7356a8af7bdc8b0f4281c65a6ceded8d114a0c7db715dd2cc093a6b15c5ae23f4"
99
USER root
1010
RUN install_packages wget gcc make build-essential
1111
RUN cd /tmp \

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ It pushes a nightly latest image of all tag versions to [ghcr.io](https://github
88

99
```shell
1010
docker run ghcr.io/dbsystel/postgresql-partman
11-
docker run ghcr.io/dbsystel/postgresql-partman:{13,14,15,16}
12-
docker run ghcr.io/dbsystel/postgresql-partman:{13-4,14-4,15-4,16-4}
13-
docker run ghcr.io/dbsystel/postgresql-partman:{14-5,15-5,16-5}
11+
docker run ghcr.io/dbsystel/postgresql-partman:{13,14,15,16,17}
12+
docker run ghcr.io/dbsystel/postgresql-partman:{13-4,14-4,15-4,16-4,17-4}
13+
docker run ghcr.io/dbsystel/postgresql-partman:{14-5,15-5,16-5,17-5}
1414
```
1515

1616
The first part of the tag represents the PostgreSQL major version, the second part represents the partman major version. If you leave out the second part, you will get the default version of partman as specified by this repository. Be aware, that this can change without notice.

0 commit comments

Comments
 (0)