Skip to content

Commit

Permalink
update container reference
Browse files Browse the repository at this point in the history
  • Loading branch information
thefringeninja authored and Till committed Jul 21, 2021
1 parent 689defb commit 2e4256e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Test ${{ matrix.test }}
services:
mssql:
image: microsoft/mssql-server-linux:2017-CU9
image: mcr.microsoft.com/mssql/server:2017-latest
ports:
- 11433:1433
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Test ${{ matrix.test }}
services:
mssql:
image: microsoft/mssql-server-linux:2017-CU9
image: mcr.microsoft.com/mssql/server:2017-latest
ports:
- 11433:1433
env:
Expand Down
2 changes: 1 addition & 1 deletion src/SqlStreamStore.TestUtils/MsSql/SqlServerContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class SqlServerContainer
private IContainerService _containerService;
private const string ContainerName = "sql-stream-store-tests-mssql";
private const string Password = "E@syP@ssw0rd";
private const string Image = "microsoft/mssql-server-linux:2017-CU9";
private const string Image = "mcr.microsoft.com/mssql/server:2017-latest";
private const int HostPort = 11433;
private const int ContainerPort = 1433;

Expand Down

0 comments on commit 2e4256e

Please sign in to comment.