Skip to content

Commit

Permalink
Fix MSSQL's default username (#7238)
Browse files Browse the repository at this point in the history
According to the [docs](https://hub.docker.com/_/microsoft-mssql-server), the username is `sa`. 
Default collation is `SQL_Latin1_General_CP1_CI_AS` which is case insensitive.
  • Loading branch information
Eng-Fouad committed Jul 4, 2023
1 parent 20f6067 commit a00d048
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class MSSQLServerContainer<SELF extends MSSQLServerContainer<SELF>> exten

public static final Integer MS_SQL_SERVER_PORT = 1433;

static final String DEFAULT_USER = "SA";
static final String DEFAULT_USER = "sa";

static final String DEFAULT_PASSWORD = "A_Str0ng_Required_Password";

Expand Down

0 comments on commit a00d048

Please sign in to comment.