Skip to content

Commit

Permalink
Update Postgres to v16.4
Browse files Browse the repository at this point in the history
  • Loading branch information
aahlenst committed Aug 11, 2024
1 parent abb7826 commit 3a77e77
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ tasks.register("pullDatabaseImage", DockerPullImage) {
outputs.file(stateFile)
.withPropertyName("stateFile")

image = "docker.io/library/postgres:16.3"
image = "docker.io/library/postgres:16.4"

doLast {
Files.writeString(stateFile, getImage().get(), StandardOpenOption.CREATE,
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3"
services:
db:
image: "postgres:16.3"
image: "postgres:16.4"
environment:
- POSTGRES_USER=demo
- POSTGRES_PASSWORD=PzBYnzHRq8afwfBrmF3i6kQd
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* documentation</a> for details about singleton containers.
*/
public class AbstractPostgresJupiterTest implements ApplicationContextInitializer<ConfigurableApplicationContext> {
static final PostgreSQLContainer postgres = new PostgreSQLContainer("postgres:16.3");
static final PostgreSQLContainer postgres = new PostgreSQLContainer("postgres:16.4");

static {
postgres.start();
Expand Down

0 comments on commit 3a77e77

Please sign in to comment.