Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update postgres docker tag to v17
Browse files Browse the repository at this point in the history
| datasource | package  | from | to |
| ---------- | -------- | ---- | -- |
| docker     | postgres | 16   | 17 |
renovate-bot committed Dec 3, 2024
1 parent 2667203 commit 833498d
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion embedded-postgresql/README.adoc
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@

* `embedded.postgresql.enabled` `(true|false, default is true)`
* `embedded.postgresql.reuseContainer` `(true|false, default is false)`
* `embedded.postgresql.dockerImage` `(default is 'postgres:16-alpine')`
* `embedded.postgresql.dockerImage` `(default is 'postgres:17-alpine')`
** Image versions on https://hub.docker.com/_/postgres?tab=tags[dockerhub]
* `embedded.postgresql.waitTimeoutInSeconds` `(default is 60 seconds)`
* `embedded.postgresql.database`
Original file line number Diff line number Diff line change
@@ -25,6 +25,6 @@ public class PostgreSQLProperties extends CommonContainerProperties {
public String getDefaultDockerImage() {
// Please don`t remove this comment.
// renovate: datasource=docker
return "postgres:16-alpine";
return "postgres:17-alpine";
}
}
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@
"name": "embedded.postgresql.docker-image",
"values": [
{
"value": "postgres:16-alpine",
"value": "postgres:17-alpine",
"description": "Latest 10.x alpine version. Ref https://hub.docker.com/_/postgres for further info."
},
{

0 comments on commit 833498d

Please sign in to comment.