gpt4 book ai didi

docker - 如何对 Windows 应用程序进行 Docker 化

转载 作者:行者123 更新时间:2023-12-02 18:54:29 24 4
gpt4 key购买 nike

我有一个要容器化的 Windows 应用程序。它是一个 Windows 桌面应用程序(不是 Web 应用程序)。我做了一些搜索,发现关于容器化桌面应用程序的内容很少。我想要容器化的应用程序在 WindowsServerCore 上运行良好。我的机器上有 Windowsservercore 镜像。

我想知道如何进行容器化。有没有可用的文档或有用的视频?
当我完成 dockerfile 后,我可以与我的应用程序 gui 交互吗???如何???

最佳答案

您可以在 StefanScherer/dockerfiles-windows 中找到大量基于 WindowsServiceCore 的应用程序示例。

您需要编写一个 Dockerfile(例如 diskspd/Dockerfile ,在其中复制/解压缩/安装所需的应用程序。

FROM microsoft/windowsservercore:10.0.14393.1770

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

ENV DISKSPD_VERSION 2.0.17

RUN Invoke-WebRequest $('https://gallery.technet.microsoft.com/DiskSpd-a-robust-storage-6cd2f223/file/152702/1/Diskspd-v{0}.zip' -f $env:DISKSPD_VERSION) -OutFile 'diskspd.zip' -UseBasicParsing ; \
Expand-Archive diskspd.zip -DestinationPath C:\ ; \
Remove-Item -Path diskspd.zip ; \
Remove-Item -Recurse armfre ; \
Remove-Item -Recurse x86fre ; \
Remove-Item *.docx ; \
Remove-Item *.pdf

ENTRYPOINT [ "C:\\amd64fre\\diskspd.exe" ]

话虽如此,仍然需要对 windowscoreserver 的完整 GUI 支持:
" Create base container with full GUI support"

关于docker - 如何对 Windows 应用程序进行 Docker 化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46860701/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com