Skip to content

Commit

Permalink
Merge branch 'main' into feat/datastore
Browse files Browse the repository at this point in the history
  • Loading branch information
cristianrgreco authored Jul 26, 2024
2 parents dd43080 + 96250a8 commit b850952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/modules/mssqlserver/src/mssqlserver-container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export class MSSQLServerContainer extends GenericContainer {
private acceptEula = "N";
private message: string | RegExp = /.*Recovery is complete.*/;

constructor(image = "mcr.microsoft.com/mssql/server:2022-latest") {
constructor(image = "mcr.microsoft.com/mssql/server:2022-CU13-ubuntu-22.04") {
super(image);
this.withExposedPorts(MSSQL_PORT).withWaitStrategy(Wait.forLogMessage(this.message, 1)).withStartupTimeout(120_000);
}
Expand Down

0 comments on commit b850952

Please sign in to comment.