We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1967fb3 commit a547c26Copy full SHA for a547c26
1 file changed
Shared.IntegrationTesting/DockerHelper.cs
@@ -439,7 +439,7 @@ public static IContainerService StartSqlContainerWithOpenConnection(String conta
439
{
440
logger.LogInformation("About to start SQL Server Container");
441
IContainerService databaseServerContainer = new Builder().UseContainer().WithName(containerName).UseImage(imageName)
442
- .WithEnvironment("ACCEPT_EULA=Y", "SA_PASSWORD={sqlPassword}").ExposePort(1433)
+ .WithEnvironment("ACCEPT_EULA=Y", $"SA_PASSWORD={sqlPassword}").ExposePort(1433)
443
.UseNetwork(networkService).KeepContainer().KeepRunning().ReuseIfExists().Build().Start()
444
.WaitForPort("1433/tcp", 30000);
445
0 commit comments