Skip to content

Commit 48ed8e7

Browse files
Merge pull request #978 from dataplat/containers
Merge containers into main [skip ci]
2 parents 7929a16 + 688b07a commit 48ed8e7

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
"TylerLeonhardt.vscode-inline-values-powershell",
2525
"cschleiden.vscode-github-actions",
2626
"ms-mssql.mssql",
27-
"Gruntfuggly.todo-tree"
27+
"Gruntfuggly.todo-tree",
28+
"streetsidesoftware.code-spell-checker"
2829
],
2930
"settings": {
3031
"editor.renderWhitespace": "all",

.devcontainer/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3"
22
services:
33
dbachecks1:
4-
image: dbachecks/sqlinstance1:v2.36.0
4+
image: dbachecks/sqlinstance1:v2.37.0
55
volumes:
66
- mydata:/var/opt/backups
77
- shared:/shared
@@ -13,7 +13,7 @@ services:
1313
hostname: dbachecks1
1414

1515
dbachecks2:
16-
image: dbachecks/sqlinstance2:v2.36.0
16+
image: dbachecks/sqlinstance2:v2.37.0
1717
volumes:
1818
- mydata:/var/opt/backups
1919
- shared:/shared
@@ -27,7 +27,7 @@ services:
2727

2828
# This is our SQL2022 container
2929
dbachecks3:
30-
image: dbachecks/sqlinstance3:v2.36.0
30+
image: dbachecks/sqlinstance3:v2.37.0
3131
volumes:
3232
- mydata:/var/opt/backups
3333
- shared:/shared

containers/JessAndBeard.psm1

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2351,13 +2351,19 @@ The Tags are the same"
23512351
FailedChange = 0 # + or - the number of tests failed for v5
23522352
SkippedChange = 0 # + or - the number of tests skipped for v5
23532353
},
2354-
@{
2354+
@{
23552355
Name = 'SupportedBuild'
23562356
RunChange = -3 # + or - the number of tests run for v5
23572357
PassedChange = -3 # + or - the number of tests passed for v5
23582358
FailedChange = 0 # + or - the number of tests failed for v5
23592359
SkippedChange = 0 # + or - the number of tests skipped for v5
2360-
2360+
},
2361+
@{
2362+
Name = 'GuestUserConnect'
2363+
RunChange = 0 # + or - the number of tests run for v5
2364+
PassedChange = +2 # + or - the number of tests passed for v5
2365+
FailedChange = -2 # + or - the number of tests failed for v5
2366+
SkippedChange = 0 # + or - the number of tests skipped for v5
23612367
}
23622368
)
23632369
$runchange = 0

0 commit comments

Comments
 (0)