Windows——Docker拉取Windows Server镜像

简介: Windows——Docker拉取Windows Server镜像

前言

microsoft-windows-server: https://hub.docker.com/_/microsoft-windows-server

内容

报错

manifest unknown: manifest tagged by "latest" is not found

[root@VM-0-11-centos ~]# docker pull mcr.microsoft.com/windows/server
Using default tag: latest
Error response from daemon: manifest for mcr.microsoft.com/windows/server:latest not found: manifest unknown: manifest tagged by "latest" is not found

因为windows server镜像没有维护latest的tag所以要拉取指定的tag

no matching manifest for linux/amd64 in the manifest list entries

  1. 详细内容
PS C:\Users\WangYang> docker pull mcr.microsoft.com/windows/server:ltsc2022
ltsc2022: Pulling from windows/server
no matching manifest for linux/amd64 in the manifest list entries
  1. 解决方法

切换到windows containers | 因为我已经切换过了,所以显示的是Linux containers

  1. 切换到windows containers的时候发生了错误,根据docker提示运行了下面命令并重启docker后再次尝试切换到windows containers成功
PS C:\Users\WangYang> Enable-WindowsOptionalFeature -Online -FeatureName $("Microsoft-Hyper-V", "Containers") -All
Path          :
Online        : True
RestartNeeded : False

拉取

PS C:\Users\WangYang> docker pull mcr.microsoft.com/windows/server:ltsc2022
ltsc2022: Pulling from windows/server
6d889b139513: Pull complete
b71990f305d9: Pull complete
Digest: sha256:0a3e159a8f249003a526b0540eb2b417ea8bf81052c3c0f4e5930e874c76d239
Status: Downloaded newer image for mcr.microsoft.com/windows/server:ltsc2022
mcr.microsoft.com/windows/server:ltsc2022

学无止境,谦卑而行.

目录
相关文章
|
14天前
|
应用服务中间件 Linux nginx
Docker镜像-手动制作yum版nginx镜像
这篇文章介绍了如何手动制作一个基于CentOS 7.6的Docker镜像,其中包括下载指定版本的CentOS镜像,创建容器,配置阿里云软件源,安装并配置nginx,自定义nginx日志格式和web页面,最后提交镜像并基于该镜像启动新容器的详细步骤。
71 21
Docker镜像-手动制作yum版nginx镜像
|
14天前
|
应用服务中间件 nginx Docker
Docker镜像-基于DockerFile制作编译版nginx镜像
这篇文章介绍了如何基于Dockerfile制作一个编译版的nginx镜像,并提供了详细的步骤和命令。
91 17
Docker镜像-基于DockerFile制作编译版nginx镜像
|
14天前
|
应用服务中间件 Linux nginx
Docker镜像管理篇
关于Docker镜像管理的教程,涵盖了Docker镜像的基本概念、管理命令以及如何制作Docker镜像等内容。
65 7
Docker镜像管理篇
|
14天前
|
应用服务中间件 Linux nginx
Docker镜像-基于DockerFile制作yum版nginx镜像
本文介绍了如何使用Dockerfile制作一个基于CentOS 7.6.1810的yum版nginx镜像,并提供了详细的步骤和命令。
55 20
|
13天前
|
Docker 容器
Docker Hub镜像公共仓库使用
这篇文章介绍了如何使用Docker Hub公共仓库进行镜像的创建、上传、下载和管理。
227 8
|
12天前
|
网络安全 虚拟化 Windows
windows 11安装openSSH server 遇到的"kex_exchange_identification: read: Connection reset"问题
windows 11安装openSSH server 遇到的"kex_exchange_identification: read: Connection reset"问题
|
19天前
|
存储 安全 Ubuntu
Docker 镜像与 Docker 容器的区别
【8月更文挑战第27天】
58 5
|
19天前
|
运维 Ubuntu Shell
掌握Docker容器的创建:从镜像到实例
【8月更文挑战第27天】
81 4
|
18天前
|
物联网 Serverless API
函数计算产品使用问题之怎么部署Docker镜像进行lora训练
函数计算产品作为一种事件驱动的全托管计算服务,让用户能够专注于业务逻辑的编写,而无需关心底层服务器的管理与运维。你可以有效地利用函数计算产品来支撑各类应用场景,从简单的数据处理到复杂的业务逻辑,实现快速、高效、低成本的云上部署与运维。以下是一些关于使用函数计算产品的合集和要点,帮助你更好地理解和应用这一服务。
|
21天前
|
存储 Docker 容器
阿里云私有docker仓库构建海外镜像
【8月更文挑战第25天】
100 3