Add Docker executor support for a Windows version
GitLab supports specific versions of Windows.
To add support for a new Windows version for the Docker executor, you must release a helper image with the same Windows version. Then you can run the helper image on the Windows host OS.
To build the helper image for the version, you need GitLab Runner installed on that Windows version, because Windows requires your host OS and container OS versions to match.
Infrastructure
We must build the helper image for it to be used for the user job.
Create a base image for infrastructure to use
To add support for a new Windows version, you might need to create a new helper image. Windows versions can run older helper images (backward compatibility), or might require a newly built helper image. For compatibility details, see Windows container version compatibility
The GitLab Runner helper image is built from a base image published by the
runner-tools/base-images project.
The windows target in dockerfiles/runner-helper/docker-bake.hcl defines the build configuration.
To support a new Windows version or architecture, that project must first publish the matching
runner-helper:<version>-servercore-ltsc<year>[-<arch>] base image. For example,
merge request 88
added the ltsc2025, ltsc2025-arm64, servercore, and nanoserver base images.
The windows-containers
repository builds the GCP host VM images for the shared Windows runner fleet.
The autoscaler
provisions them.
For example, when adding support for Windows Server 2025, backward compatibility allowed reuse of the existing 2022 helper images. However, when adding support to Windows Server 2022, the Windows Server 2019 helper image was not compatible with process isolation, so a new image was required.
Some GCP base images require Docker installation during the build process. To update the CI/CD environment for a new image, update the following files:
.gitlab-ci.yml.gitlab/ci/build.gitlab-ci.yml
Test the image generated
We recommend testing the image generated in the dev step. It is likely to be named dev xxx where xxx stands for the windows server version.
To test the image, the following steps can be followed:
- Add support for the new windows server version in
GitLab Runner projectand generate thegitlab-runner-helper.x86_64-windows.exebinary (orgitlab-runner-helper.arm64-windows.exefor ARM64 hosts). - Create a VM using the disk image generated during the
devstep. When adding support forwindows server ltsc2022, the disk image name wasrunners-windows-21h1-core-containers-dev-40-mr - Generate the
gitlab-runner-helperDocker image from this VM. To do so, you need to download thegitlab-runner-helper.x86_64-windows.exebinary on the VM. As theInvoke-WebRequestPowerShell command might be unavailable, you should use theStart-BitsTransfercommand instead. - Create another VM using the new GCP windows server image to support.
- Install the
gitlab-runnerexecutable generated for the previously updateGitLab-Runnerproject and register it to a project. - Successfully launch a job.
An example of this procedure is summarized in this comment.
Publish the image
After we merge the merge request created from the previous step, we need to run the publish job manually for the image to be published to our production GCP project.
Take note of the image name that is created from the publish job, for
example in this job
we created an image called
runners-windows-2019-core-containers-2020-07-17. This will be used for
the install part.
Add two new runner managers
At this point we should have a base image ready in our production environment, so we can use it inside the CI pipeline for the GitLab Runner project. The only thing that is left is to set up the Runner Managers.
Register
Run gitlab-runner register
to register the two new runners. These should be project-specific runners, so
we need to use the registration token from the
project settings.
The name of the runner should follow the same naming convention as the
existing ones.
For example, for Windows Server Core 2004 we should name the Runner
Managers the following:
windows-2004-private-runner-manager-1windows-2004-private-runner-manager-2
Once registered, make sure you safely store the runner tokens found in
the config.toml file since we are going to need these for the installation
step.
Finally, we’ll need to assign the new Runner Managers to the security fork project and to the ’liveness’ test support project. So for each of the new Runner Managers:
- Go to the Runners section of the Runner project CI/CD settings page;
- Unlock the new Runner by editing its properties and unchecking
Lock to current projects; - For the security fork project:
- Go to the Runners section of the project’s CI/CD settings page;
- Scroll down to the
Other available runnerssection and enable the runner for this project;
- For the ’liveness’ test support project:
- Go to the Runners section of the project’s CI/CD settings page;
- Scroll down to the
Other available runnerssection and enable the runner for this project;
- Lock the Runner back again in the Runner project CI/CD settings page.
Install
Install a new instance of
autoscaler
to have a specific config.toml for that Windows version. We need to
update our Ansible repository (https://ops.gitlab.net/gitlab-com/gl-infra/ci-infrastructure-windows)
to include the new Windows version.
For example, if we want to add support for Windows Server Core 2004 in
the 13.7 milestone we can see this
merge request: https://ops.gitlab.net/gitlab-com/gl-infra/ci-infrastructure-windows/-/merge_requests/70,
where we update the following files:
ansible/roles/runner/tasks/main.ymlansible/roles/runner/tasks/autoscaler.ymlansible/group_vars/gcp_role_runner_manager.ymlansible/host_vars/windows-shared-runners-manager-1.ymlansible/host_vars/windows-shared-runners-manager-2.yml
When opening a merge request make sure that the maintainer is aware
that they need to register 2 new runners and save them
inside the CI/CD variables with the keys defined in
ansible/host_vars.
Publish registry.gitlab.com/gitlab-org/ci-cd/tests/liveness
The image registry.gitlab.com/gitlab-org/ci-cd/tests/liveness is used
as part of the CI process for GitLab Runner.
Make sure that an image based on the new Windows version is published.
For example, if we want to add support for Windows Server Core 2004 in
the 13.7 milestone we can see the following
merge request,
where we update the following files:
.gitlab-ci.ymlMakefile
Update GitLab Runner to support specific Windows version
Since we need to provide a helper image for users to be able to use the Docker executor we have specific checks inside the code base, we need to allow the new Windows version.
We should update the following:
Windows version detection: Add the kernel build number and version constant to
supportedWindowsBuildsinhelpers/container/windows/version.go, and update the surrounding tests.Version-to-image mapping: Add the version to the
ltscmap inhelpers/container/helperimage/windows_info.go, and update the surrounding tests. The image tag, prebuilt bundle name, and host architecture are all derived from this mapping.Helper image build: Add the new
servercore:ltsc<year>entry (and, for a new architecture, the-archvariant) to thewindowstarget indockerfiles/runner-helper/docker-bake.hcl.Publish mapping: Map the built artifact to its published registry tag in
scripts/pusher/helper-images.json.CI jobs: Add or update the following:
- Prebuilt helper image job in
.gitlab/ci/build.gitlab-ci.yml WINDOWS_VERSIONorWINDOWS_PREBUILTvariables in.gitlab/ci/_common.gitlab-ci.yml(to run tests on the new version)- Test jobs in
.gitlab/ci/test.gitlab-ci.ymland.gitlab/ci/coverage.gitlab-ci.yml - Quarantine file
ci/.test-failures.servercore<version>.txt
- Prebuilt helper image job in
Documentation: Update the supported versions and helper image list in
docs/executors/docker.md.
Example: Windows Server 2025 (LTSC2025) helper image support, including the arm64
variant, was implemented across several merge requests (parent
issue 39182):
- Merge request 88:
Added the
ltsc2025andltsc2025-arm64base images (prerequisite in therunner-tools/base-imagesproject). - Merge request 6033: Built
servercore:ltsc2025andservercore:ltsc2025-arm64helper images fromdockerfiles/runner-helper/docker-bake.hcl,scripts/pusher/helper-images.json,.gitlab/ci/build.gitlab-ci.ymlbase images. At this stage, the ARM64 image bundled the AMD64 helper binary under Windows emulation. - Merge request 6697: Added a native ARM64
gitlab-runner-helper.exebuild target (Makefile.runner_helper.mk,ci/release_dir). - Merge request 6716: Bundled the native
ARM64 helper binary into the
servercore:ltsc2025-arm64image instead of the emulated AMD64 binary (dockerfiles/runner-helper/docker-bake.hcl,scripts/pusher/helper-images.json). - Merge request 6717: Built
nanoserver:ltsc2025andnanoserver:ltsc2025-arm64helper images.