Skip to content

Commit

Permalink
fix docker settings
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed Jul 6, 2023
1 parent 65fea7c commit 50bdd86
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
env:
MSSQL_SA_PASSWORD: '!p@ssword'
MSSQL_SA_PASSWORD: '!P@ssw0rd'
ACCEPT_EULA: 'Y'
ports:
- 1433:1433
Expand All @@ -37,7 +37,7 @@ jobs:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: '!p@ssword'
POSTGRES_PASSWORD: '!P@ssw0rd'
ports:
- 5432:5432
volumes:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ConnectionStrings": {
"Tracker": "Server=localhost;Port=5432;Database=TrackerTest;User Id=postgres;Password=!p@ssword;"
"Tracker": "Server=localhost;Port=5432;Database=TrackerTest;User Id=postgres;Password=!P@ssw0rd;"
}
}
2 changes: 1 addition & 1 deletion test/FluentCommand.SqlServer.Tests/appsettings.github.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ConnectionStrings": {
"Tracker": "Server=mssql,1433;Database=TrackerGithub;User Id=SA;Password=!p@ssword;TrustServerCertificate=True;"
"Tracker": "Server=localhost;Database=TrackerGithub;User Id=SA;Password=!P@ssw0rd;TrustServerCertificate=True;"
}
}

0 comments on commit 50bdd86

Please sign in to comment.