Update password to comply with password rules

The password needs an upper-case and a number to comply. Like that it fails and for a beginner it might not be obvious why - even thought it will print an error; but it's just one line.
This commit is contained in:
Christian Kniep 2018-03-26 18:25:20 +02:00 committed by Joao Fernandes
parent 3109bf5dfe
commit 5de485dbe9
1 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ configure this app to use our SQL Server database, and then create a
db:
image: "microsoft/mssql-server-linux"
environment:
SA_PASSWORD: "your_password"
SA_PASSWORD: "Your_password123"
ACCEPT_EULA: "Y"
```
@ -125,8 +125,8 @@ configure this app to use our SQL Server database, and then create a
public void ConfigureServices(IServiceCollection services)
{
// Database connection string.
// Make sure to update the Password value below from "your_password" to your actual password.
var connection = @"Server=db;Database=master;User=sa;Password=your_password;";
// Make sure to update the Password value below from "Your_password123" to your actual password.
var connection = @"Server=db;Database=master;User=sa;Password=Your_password123;";
// This line uses 'UseSqlServer' in the 'options' parameter
// with the connection string defined above.