Skip to content

Commit

Permalink
feat: increment postgres version
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Oct 4, 2023
1 parent ffa9838 commit 7c95f8c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,16 @@
"projectName": "boot-jooq-r2dbc-sample",
"args": "--spring.profiles.active=local",
"envFile": "${workspaceFolder}/.env"
},
{
"type": "java",
"name": "Spring Boot-TestApplication<boot-data-envers>",
"request": "launch",
"cwd": "${workspaceFolder}",
"mainClass": "com.example.envers.TestApplication",
"projectName": "boot-data-envers",
"args": "",
"envFile": "${workspaceFolder}/.env"
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class TestApplication {
@Bean
@ServiceConnection
PostgreSQLContainer<?> postgreSQLContainer() {
return new PostgreSQLContainer<>("postgres:15.3-alpine");
return new PostgreSQLContainer<>("postgres:16.0-alpine");
}

public static void main(String[] args) {
Expand Down

0 comments on commit 7c95f8c

Please sign in to comment.