Skip to content

Commit

Permalink
chore(deps): update mysql docker tag to v9.1 and PG to 17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli authored Oct 18, 2024
1 parent f4be937 commit 2042678
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jpa/boot-data-multipledatasources/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.8'
services:
postgres:
image: postgres:16.4-alpine
image: postgres:17.0-alpine
ports:
- "5432:5432"
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
public class TestMultipleDataSourcesApplication {

private static final MySQLContainer<?> MY_SQL_CONTAINER =
new MySQLContainer<>(DockerImageName.parse("mysql").withTag("9.0"));
new MySQLContainer<>(DockerImageName.parse("mysql").withTag("9.1"));

private static final PostgreSQLContainer<?> POSTGRE_SQL_CONTAINER =
new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("16.3-alpine"));
new PostgreSQLContainer<>(DockerImageName.parse("postgres").withTag("17.0-alpine"));

static {
Startables.deepStart(MY_SQL_CONTAINER, POSTGRE_SQL_CONTAINER).join();
Expand Down

0 comments on commit 2042678

Please sign in to comment.