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.
22 lines
461 B
22 lines
461 B
Write-Host Starting test
|
|
|
|
if ($env:ARCH -ne "amd64") {
|
|
Write-Host "Arch $env:ARCH detected. Skip testing."
|
|
exit 0
|
|
}
|
|
|
|
$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
|