Skip to content

Commit 3348cb8

Browse files
authored
Merge pull request #11 from andyundso/renovate/configure
Configure Renovate
2 parents abf35fc + aa90211 commit 3348cb8

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Diff for: install.ps1

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ function Wait-ForContainer {
2626
elseif ((Get-Date) -gt $startTime.AddSeconds($timeout)) {
2727
Write-Host "Timed out waiting for container '$containerName' to be healthy."
2828
& docker logs sql
29+
& docker inspect --format "{{json .State.Health }}" sql
2930
exit 1
3031
}
3132

@@ -101,7 +102,7 @@ forceencryption = 1
101102
$AdditionalContainerConfiguration = "-v /opt/mssql/mssql.conf:/var/opt/mssql/mssql.conf -v /opt/mssql/mssql.pem:/var/opt/mssql/mssql.pem -v /opt/mssql/mssql.key:/var/opt/mssql/mssql.key"
102103
}
103104

104-
if ($Version -Eq "2022") {
105+
if ($Version -ne "2017") {
105106
$ToolsPath = "/opt/mssql-tools18"
106107
}
107108
else {

Diff for: renovate.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended"
5+
]
6+
}

0 commit comments

Comments
 (0)