Skip to content

Commit

Permalink
chore(deps): update postgres docker tag to v17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli committed Nov 28, 2024
1 parent 4b9480d commit 7b47499
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scheduler/boot-scheduler-jobrunr/docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:

postgresqldb:
image: postgres:16.6-alpine
image: postgres:17.2-alpine
environment:
- POSTGRES_USER=appuser
- POSTGRES_PASSWORD=secret
Expand Down
2 changes: 1 addition & 1 deletion scheduler/boot-scheduler-jobrunr/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@
<configuration>
<java>
<googleJavaFormat>
<version>1.22.0</version>
<version>1.25.0</version>
<style>AOSP</style>
</googleJavaFormat>
</java>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ public class ContainersConfig {
@Bean
@ServiceConnection
PostgreSQLContainer<?> postgreSQLContainer() {
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("16.4-alpine"));
return new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.2-alpine"));
}
}

0 comments on commit 7b47499

Please sign in to comment.