我只是解锁了docker,从windows 10中移除了hyper-v和容器并重新安装了docker并允许它再次启用hyper-v和容器。当切换到无法运行Windows容器的Windows容器时,所有结果都相同。
C:\Users\pks>docker run -it microsoft/nanoserver cmd
docker: Error response from daemon: failed to create endpoint big_babbage on network nat: HNS failed with error : The file cannot be opened because it is in the process of being deleted..
有没有人见过半月问题?我怎么弄清楚什么是错的?
更新: 我可以创建一个新的网络,并在每个命令中使用它,它可以工作,但我猜它也应该默认使用。
docker network create -d nat --subnet=192.168.1.0/24 --gateway=192.168.1.1 MyNatNetwork
docker run -it --network=MyNatNetwork <image> <cmd>