私信  •  关注

M-Pixel

M-Pixel 最近创建的主题
M-Pixel 最近回复了
5 年前
回复了 M-Pixel 创建的主题 » Docker for Windows:如何用映像目录的内容初始化卷?

Windows: cannot put data in volumes with docker build

#escape=`
FROM microsoft/windowsservercore
SHELL [ "powershell", "-Command" ]
COPY ".\starter-config" "C:\starter-config"
CMD if ((Get-ChildItem 'C:\config').Length -eq 0) {`
        Copy-Item 'C:\starter-config\*' 'C:\config\';`
    };`
    & 'C:\RunTheServer.ps1'