nano-server

Unknown Blob when pulling microsoft/xxxxx

笑着哭i 提交于 2019-12-25 09:10:06
问题 I wanted to pull the the Docker image for Windows core/nano, docker pull microsoft/xxx to my local computer. The pull starts but it quickly ends with the error unknown blob Same result for both of these: PS C:\>docker pull microsoft/nanoserver PS C:\>docker pull microsoft/windowsservercore 回答1: When trying to use images from Microsofts Docker repository "microsoft/xxx" you must ensure that you are running Docker with Windows containers, not Linux containers. https://docs.microsoft.com/sv-se

Powershell Silent Install in Nano Server with Docker

感情迁移 提交于 2019-12-12 01:00:03
问题 My docker file gets a Nano Server container and it adds Java automatically. # Get nano server FROM microsoft/nanoserver # Download file and set in docker container ADD http://javadl.oracle.com/webapps/download/AutoDL?BundleId=225355_090f390dda5b47b9b721c7dfaa008135 \ 'C:\\java\jre-8u151-windows-x64.exe' # Silent install and delete install file RUN powershell Start-Process -filepath C:\java\jre-8u151-windows-x64.exe -ArgumentList '/s,INSTALLDIR=c:\Java\jre1.8.0_151' -Passthru -Wait; \ Remove

Is it possible to run GUI apps in windows containers?

爷,独闯天下 提交于 2019-12-04 09:34:55
问题 So I'm playing around with this containers concept and specificlly windows containers. I managed to run containers using the windows nanoserver image, however this image meant to services and does not support gui applications (or 32 bit apps). Couldn't find any mentioning of running gui applications (and see there gui) using windows container (found only linux container gui). is there a way to run GUI apps in containers? and so how do I can create my own image containing this support? 回答1: