Skip to content

Commit

Permalink
Use custom mssql docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
radovanradic committed Sep 19, 2024
1 parent cdb11ed commit c01e0e1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions data-jdbc/src/test/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ test-resources:
mssql:
accept-license: true
startup-timeout: 300s
image-name: mcr.microsoft.com/mssql/server:2022-latest
mariadb:
startup-timeout: 300s
mysql:
Expand Down
1 change: 1 addition & 0 deletions data-r2dbc/src/test/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ test-resources:
mssql:
accept-license: true
startup-timeout: 300s
image-name: mcr.microsoft.com/mssql/server:2022-latest
mariadb:
startup-timeout: 300s
mysql:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ class SqlServerHibernateTransactionSpec extends HibernateTransactionSpec impleme
"datasources.default.name" : "mymssqldb",
'jpa.default.properties.hibernate.hbm2ddl.auto' : 'create-drop',
'jpa.default.properties.hibernate.dialect' : 'org.hibernate.dialect.SQLServerDialect',
'test-resources.containers.mssql.accept-license' : 'true'
'test-resources.containers.mssql.accept-license' : 'true',
'test-resources.containers.mssql.image-name' : 'mcr.microsoft.com/mssql/server:2022-latest'
]
}

Expand Down

0 comments on commit c01e0e1

Please sign in to comment.