Merge pull request #12 from StefanScherer/add-nanoserver-1903

Add nanoserver 1903
pull/14/head
Stefan Scherer 5 years ago committed by GitHub
commit 51d6337292
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -22,6 +22,8 @@ Simple HTTP docker service that prints it's container ID - for (almost) any Dock
* windows/amd64 10.0.17134.x
* Rebase this image to nanoserver:1809 SAC
* windows/amd64 10.0.17763.x
* Rebase this image to nanoserver:1903 SAC
* windows/amd64 10.0.18362.x
* Wait for all images to be on Docker Hub
* Create and push the manifest list
* preview of `docker manifest` command

@ -50,7 +50,15 @@ if ($isWindows) {
"$($image):$os-$env:ARCH-$env:APPVEYOR_REPO_TAG_NAME" `
-s microsoft/nanoserver:sac2016 `
-t "$($image):$os-$env:ARCH-$env:APPVEYOR_REPO_TAG_NAME-1809" `
-b stefanscherer/nanoserver:10.0.17763.379
-b stefanscherer/nanoserver:1809
Write-Host "Rebasing image to produce 1903 variant"
npm install -g rebase-docker-image
rebase-docker-image `
"$($image):$os-$env:ARCH-$env:APPVEYOR_REPO_TAG_NAME" `
-s microsoft/nanoserver:sac2016 `
-t "$($image):$os-$env:ARCH-$env:APPVEYOR_REPO_TAG_NAME-1903" `
-b stefanscherer/nanoserver:1903
} else {
# Linux
@ -63,7 +71,8 @@ if ($isWindows) {
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME" `
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME-1709" `
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME-1803" `
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME-1809"
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME-1809" `
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME-1903"
docker manifest annotate "$($image):$env:APPVEYOR_REPO_TAG_NAME" "$($image):linux-arm-$env:APPVEYOR_REPO_TAG_NAME" --os linux --arch arm --variant v6
docker manifest annotate "$($image):$env:APPVEYOR_REPO_TAG_NAME" "$($image):linux-arm64-$env:APPVEYOR_REPO_TAG_NAME" --os linux --arch arm64 --variant v8
docker manifest push "$($image):$env:APPVEYOR_REPO_TAG_NAME"
@ -76,7 +85,8 @@ if ($isWindows) {
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME" `
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME-1709" `
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME-1803" `
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME-1809"
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME-1809" `
"$($image):windows-amd64-$env:APPVEYOR_REPO_TAG_NAME-1903"
docker manifest annotate "$($image):latest" "$($image):linux-arm-$env:APPVEYOR_REPO_TAG_NAME" --os linux --arch arm --variant v6
docker manifest annotate "$($image):latest" "$($image):linux-arm64-$env:APPVEYOR_REPO_TAG_NAME" --os linux --arch arm64 --variant v8
docker manifest push "$($image):latest"

Loading…
Cancel
Save