Skip to content

Commit

Permalink
chore(deps): update postgres docker tag to v16 (#222)
Browse files Browse the repository at this point in the history
* chore(deps): update postgres docker tag to v16

* upgrade to latest version

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Raja Kolli <[email protected]>
  • Loading branch information
renovate[bot] and rajadilipkolli authored Sep 21, 2023
1 parent 5a749f0 commit 2099dc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.8'
services:

postgresqldb:
image: postgres:15.4-alpine
image: postgres:16.0-alpine
hostname: postgresqldb
extra_hosts: [ 'host.docker.internal:host-gateway' ]
environment:
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/learning/mfscreener/TestApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class TestApplication {
@Bean
@ServiceConnection
PostgreSQLContainer<?> postgreSQLContainer() {
return new PostgreSQLContainer<>("postgres:15.3-alpine");
return new PostgreSQLContainer<>("postgres:16.0-alpine");
}

@Bean
Expand Down

0 comments on commit 2099dc0

Please sign in to comment.