Docker 和 Docker 桌面有什么区别?

What is difference between Docker and Docker Desktop?

我正在使用 mac,显然必须安装 Docker Desktop 才能在 macOS 中使用 Docker。为什么 Docker Desktop 在 Mac 和 Windows OS 中是必需的,而不是在 Linux 中? Docker 桌面有什么用?我试过谷歌搜索但找不到合适的答案。

docker mac 和 windows 的桌面在 运行 常规 Linux 幕后使用 machine docker守护进程。

Reference windows 的状态 docker 正在使用 WSL2,它是 运行 VM。
Here 提到在 docker 上为 mac 备份 docker 虚拟机。

Docker Desktop handles the setup and teardown of lightweight VMs on both Windows and macOS, using Hyper-V on Windows desktops and Hyperkit on macOS.

From docker blog .