如何将D:驱动器添加到microsoft / windowsservercore基本映像?
我的Windows Server 2016服务器具有D:驱动器.该服务器是一个AWS实例.
这是安装了本机Docker的,而不是已经存在一段时间的“ Windows的Docker”.
最佳答案
我们得到了它的工作.本质上,我们在
注册表中
添加了符号
链接.
将此添加到dockerfile中:
RUN powershell -NoProfile -Command \
New-Item -ItemType directory -Path C:\drived ; \
New-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\DOS Devices' -Name 'D:' -Value '\??\C:\drived' -PropertyType String;
原文链接:https://www.f2er.com/docker/532682.html