You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
366 B
17 lines
366 B
Write-Host Starting test
|
|
|
|
$ErrorActionPreference = 'SilentlyContinue';
|
|
docker kill whoamitest
|
|
docker rm -f whoamitest
|
|
|
|
$ErrorActionPreference = 'Stop';
|
|
Write-Host Starting container
|
|
docker run --name whoamitest -p 8080:8080 -d whoami
|
|
Start-Sleep 10
|
|
|
|
docker logs whoamitest
|
|
|
|
$ErrorActionPreference = 'SilentlyContinue';
|
|
docker kill whoamitest
|
|
docker rm -f whoamitest
|