File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
eng/common/scripts/stress-testing Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -169,6 +169,15 @@ function DeployStressPackage(
169
169
170
170
Run docker build - t $imageTag -f $dockerFile $dockerBuildFolder
171
171
if ($LASTEXITCODE ) { return }
172
+
173
+ Write-Host " `n Container image '$imageTag ' successfully built. To run commands on the container locally:" - ForegroundColor Blue
174
+ Write-Host " docker run -it $imageTag " - ForegroundColor DarkBlue
175
+ Write-Host " docker run -it $imageTag <shell, e.g. 'bash' 'pwsh' 'sh'>" - ForegroundColor DarkBlue
176
+ Write-Host " To show installed container images:" - ForegroundColor Blue
177
+ Write-Host " docker image ls" - ForegroundColor DarkBlue
178
+ Write-Host " To show running containers:" - ForegroundColor Blue
179
+ Write-Host " docker ps" - ForegroundColor DarkBlue
180
+
172
181
Run docker push $imageTag
173
182
if ($LASTEXITCODE ) {
174
183
if ($login ) {
You can’t perform that action at this time.
0 commit comments