Skip to content

Commit

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

* Update postgresql 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 Jan 2, 2025
1 parent 901babb commit e31e2f7
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
@@ -1,7 +1,7 @@
services:

postgresqldb:
image: postgres:16.6-alpine
image: postgres:17.2-alpine
hostname: postgresqldb
container_name: postgresqldb
extra_hosts: [ 'host.docker.internal:host-gateway' ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ public class SQLContainersConfig {
@ServiceConnection
@RestartScope
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 e31e2f7

Please sign in to comment.