Cmdlets to provide and manage SQL servers for tests.
Removes a test SQL server Docker container.
Remove-SqlTestDockerInstance -Server <Object> [<CommonParameters>]
Removes a SQL server Docker container, in case it was created with `New-DockerSqlServer`.
$server = New-SqlTestDockerInstance -DockerContainerName 'Sandbox' -ServerAdminPassword 'pa$$w0rd' -AcceptEula
PS> Remove-SqlTestDockerInstance -DockerContainerName $server.Name
Specifies the server to remove. Requires the name of the Docker container.
Type: Object
Parameter Sets: (All)
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.