Docker 在 运行 时给我一个错误

Docker is giving me an error when running it

我正在使用 windows 并且最近安装了 docker。我刚刚 运行 命令

docker run busybox

它给出

WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (windows/amd64) and no specific platform was requested 

之后我运行 docker run busybox --platform windows/amd64 仍然给我同样的错误。我该怎么办?

Docker 选项需要放在图片名称之前,所以你应该使用

docker run --platform windows/amd64 busybox