From d2ad81cd7a88c0114e152da6a3849aba64a68610 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Fri, 30 May 2025 10:44:53 -0700 Subject: [PATCH] Remove Windows Server 2019 / 1809 --- Makefile | 1 - amd64/hello-world/nanoserver-1809/Dockerfile | 3 --- amd64/hello-world/nanoserver-1809/hello.txt | 22 -------------------- generate-stackbrew-library.sh | 1 - 4 files changed, 27 deletions(-) delete mode 100644 amd64/hello-world/nanoserver-1809/Dockerfile delete mode 100644 amd64/hello-world/nanoserver-1809/hello.txt diff --git a/Makefile b/Makefile index 9b88341..3f1bd74 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,6 @@ $(C_TARGETS): hello.c $(MUSL_GCC) for winVariant in \ nanoserver-ltsc2025 \ nanoserver-ltsc2022 \ - nanoserver-1809 \ ; do \ mkdir -p "$(@D)/$$winVariant"; \ '$@' | sed \ diff --git a/amd64/hello-world/nanoserver-1809/Dockerfile b/amd64/hello-world/nanoserver-1809/Dockerfile deleted file mode 100644 index 4c3525e..0000000 --- a/amd64/hello-world/nanoserver-1809/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -FROM mcr.microsoft.com/windows/nanoserver:1809 -COPY hello.txt C: -CMD ["cmd", "/C", "type C:\\hello.txt"] diff --git a/amd64/hello-world/nanoserver-1809/hello.txt b/amd64/hello-world/nanoserver-1809/hello.txt deleted file mode 100644 index 1f39136..0000000 --- a/amd64/hello-world/nanoserver-1809/hello.txt +++ /dev/null @@ -1,22 +0,0 @@ - -Hello from Docker! -This message shows that your installation appears to be working correctly. - -To generate this message, Docker took the following steps: - 1. The Docker client contacted the Docker daemon. - 2. The Docker daemon pulled the "hello-world" image from the Docker Hub. - (windows-amd64, nanoserver-1809) - 3. The Docker daemon created a new container from that image which runs the - executable that produces the output you are currently reading. - 4. The Docker daemon streamed that output to the Docker client, which sent it - to your terminal. - -To try something more ambitious, you can run a Windows Server container with: - PS C:\> docker run -it mcr.microsoft.com/windows/servercore:1809 powershell - -Share images, automate workflows, and more with a free Docker ID: - https://hub.docker.com/ - -For more examples and ideas, visit: - https://docs.docker.com/get-started/ - diff --git a/generate-stackbrew-library.sh b/generate-stackbrew-library.sh index 64a431f..fc6c9b0 100755 --- a/generate-stackbrew-library.sh +++ b/generate-stackbrew-library.sh @@ -65,7 +65,6 @@ done for winVariant in \ nanoserver-ltsc2025 \ nanoserver-ltsc2022 \ - nanoserver-1809 \ ; do winArches=( *"/$image/$winVariant/hello.txt" ) winArches=( "${winArches[@]%"/$image/$winVariant/hello.txt"}" )