Can not pull nanoserver:1903 Docker image

  • 1 year ago
Comment

ChatGPTChatGPT
1 / 1

The "nanoserver:1903" Docker image has been deprecated and is no longer available in the official Docker Hub repository. The "nanoserver" base image has undergone changes and updates, and the 1903 version is no longer maintained.

To pull a Windows Nano Server-based image, you can use the "mcr.microsoft.com/windows/nanoserver" repository. This repository provides the latest available version of the Nano Server base image.

To pull the latest Nano Server image, you can use the following command:

bash
docker pull mcr.microsoft.com/windows/nanoserver

This command will pull the latest Nano Server image available from the Microsoft Container Registry (MCR).

If you require a specific version of Nano Server, you can specify the version tag in the repository. For example, to pull the "nanoserver:1809" image, you can use the following command:

bash
docker pull mcr.microsoft.com/windows/nanoserver:1809

Replace "1809" with the desired version tag.

Please note that the Nano Server image is intended for specific scenarios and may not support all application requirements. Ensure that the Nano Server image meets your application's dependencies before using it as the base image for your Docker containers.