Questions tagged [windows-container]

Windows containers are an operating system-level virtualization method for running multiple isolated Windows systems (containers) on a single control host.

Windows containers are an operating system-level virtualization method for running multiple isolated Windows systems (containers) on a single control host.

https://learn.microsoft.com/en-us/virtualization/windowscontainers/about/index

At runtime windows containers share the windows-kernel of the underlying operating system, which sets them apart from linux-containers. A windows container cannot run on a linux-kernel and vice-versa.

Use this tag for indicating that you are using containers which share a Windows kernel.

Do not use this tag if you are using linux containers on Windows.

352 questions
0
votes
1 answer

Where to get Windows container base image to run in Docker or VirtualBox on Windows 10 Enterprise (64-bit)

I am running Windows 10 Enterprise (64-bit) in virtual environment. I have installed Docker and VirtualBox in it. For my work, I need a Windows container base image (with .NET support). I tried getting one at…
0
votes
1 answer

NLog console appender does write to docker logs in .NET

Below is the nlog configuration in web.config file
Venkatesh
  • 320
  • 2
  • 18
0
votes
1 answer

EvaluateAsync(), serializing evaluate on 2 different sessions

I want to have 2 evaluates running parallelly on 2 different devices(and 2 different sessions) that I have created, for which I am using EvaluateAsync() Code: std::cout<<" Starting Evaluate " << std::endl; auto start =…
0
votes
0 answers

Docker - Windows Containers development on Windows 2019 / 2016 VM

I am looking to do some Windows Container based development specifically for .NET Framwework 4.x apps (not .NET Core). To this end - I am in a scenario where in getting Windows 10 box / VM is out of question for the immediate future. I have only…
0
votes
1 answer

Does Google FileStore work with Windows containers on GKE?

I referred the below link from GCP https://cloud.google.com/filestore/docs/accessing-fileshares . Created a Filestore instance followed by a pv & pvc as mentioned in the example. When I deployed my pod (windows container), I have observed the mount…
0
votes
1 answer

Externalization of postgreSQL database from windows comtainer

I have an APP running inside container on windows 2016 platform . The app uses the postgreSQL database .we want to persist the database when container destroy and another container up again . So we want to persist the database record . I see the…
0
votes
0 answers

Which component to install to get VC folder inside Windows Docker container?

I am getting below error when i try to build and run c++ program. error MSB4019: The imported project "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Microsoft\VC\v160\Microsoft.Cpp.Default.props" was not found. Confirm…
Nilesh Solanki
  • 336
  • 4
  • 19
0
votes
1 answer

How to cache Windows docker images on Linux?

What is the best way to cache Windows container images on a Linux system? Setting up a registry mirror won't work because pulling a Windows image from Linux gets me a no matching manifest for linux/amd64 in the manifest list entries One option…
0
votes
0 answers

Scale out Windows container in Azure App Service

We are running our application using Azure App Service. It is based in .NET FW 4.7 with Webforms and API Rest. We are using PC3 App Service Plan (16GB RAM). The application is stateless and it supports the Application Service scale out without a…
0
votes
1 answer

Run windows container on docker toolbox?

I am trying to run microsoft/iis:latest image on my docker toolbox set-up in my Windows 10 Home. As expected, with the containers running on a virtual linux VM, i get the below message. $ docker run -it microsoft/iis Unable to find image…
Aman
  • 159
  • 2
  • 15
0
votes
1 answer

Trying to create a Jenkins docker container using chocolatey in a windows container

I've looked at a few questions, but I couldn't find anything that matched my issue. If this is a duplicate, I apologize! Currently, I'm trying the create a Jenkins docker container using chocolatey inside a dockerfile script. My current script is…
Andy
  • 339
  • 3
  • 17
0
votes
1 answer

Name resolution from windows pods does not work on 1.18.1

Have following setup below. Flannel is in VXLAN mode. Name resolution does not work from Windows nodes. Verified that following works: Windows POD -> external DNS server resolution Windows POD -> HTTPS connection to kubernetes API service IP Linux…
0
votes
1 answer

Unable to access kubernetes API server from Windows containers

I have kubernetes 1.17.4 running and Windows nodes joined to it. Overlay networking working fine in accessing all services within Kubernetes, the only problem is windows containers can not access https://kubernetes, connection fails on TCP level.…
0
votes
1 answer

vcredist_x86.exe can't be installed in container built from mcr.microsoft.com/windows/servercore:10.0.14393.3506

After KB4537764 upgrade, our container can't be launched in winserver 2016. I followed MS support to upgrade our base image to mcr.microsoft.com/windows/servercore:10.0.14393.3506. But it turns out that vcredist_x86.exe can't be installed on…
Newton Zou
  • 558
  • 1
  • 5
  • 20
0
votes
1 answer

Windows Docker adding custom headers

I am trying to add the X-Forwarded-For request header to the mcr.microsoft.com/dotnet/framework/aspnet:4.8-windowsservercore-ltsc2019 Docker base image using Add-WebConfigurationProperty. My Dockerfile looks like: FROM…