使用 docker for windows 工具箱切换到 Windows 容器

问题描述 投票:0回答:3

我已经在 Windows 7 64 位操作系统上安装了 docker for windows 工具箱。我无法使用 docker 菜单切换到 Windows 容器,因为 docker 图标在系统托盘中不可用。 Docker 服务也不可用。 Docker CLI 可执行文件在任何文件夹上均不可用。然而,docker 命令正在运行,并且正在创建简单的容器。

任何有关如何切换到 Windows 容器的建议将不胜感激。

docker windows-7 switch-statement toolbox
3个回答
7
投票

右键单击 Windows 任务栏右下角的图标

enter image description here

enter image description here

enter image description here

Enable-WindowsOptionalFeature -Online -FeatureName $("Microsoft-Hyper-V", "Containers") -All

3
投票

Docker 工具箱包含用于在 Linux 虚拟机内运行 docker 的 docker 机器。此安装没有运行本机 Windows 容器的选项。

要运行本机 Windows 容器,您需要在 Windows 10 或 Server 2016 上进行基于 HyperV 的安装:https://docs.docker.com/docker-for-windows/install/


0
投票

我正在运行 Docker Desktop 4.34,该主题实际上在 Docker 官方网页上有清楚的记录:

https://docs.docker.com/desktop/install/windows-install/

重要 要运行 Windows 容器,您需要 Windows 10 或 Windows 11 专业版或企业版。 Windows 家庭版或教育版仅允许您运行 Linux 容器。

© www.soinside.com 2019 - 2024. All rights reserved.