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

Windows Service installation on Docker Container

I am trying to port one of our Tomcat based Windows application to Windows Nano Server Container. The installation process includes two Windows Service installations - an ActiveMQ service and another Tomcat Service. This is achieved using two batch…
Chethan S.
  • 558
  • 2
  • 8
  • 28
0
votes
1 answer

How to Run Jenkins in a Windows Docker Container on Windows 10?

I am trying to run Jenkins in a docker container on my Windows 10 box. I am using a Windows container, not a Linux container. I tried to use this guide: https://jenkins.io/doc/book/installing/#on-windows However the command to enter is for Linux…
newdevt
  • 9
  • 1
  • 1
  • 5
0
votes
1 answer

kubelet.exe on Windows Server Core (1709): unable to read physical memory

I've built kubelet, kube-proxy off master branch of kubernetes repository and when running kubelet.exe without any parameters I'm getting the following error: error: failed to run Kubelet: unable to read physical memory I'm building offmaster as…
marius-O
  • 395
  • 3
  • 15
0
votes
1 answer

Kubernetes - Windows container on Azure container service issues with azure file persistent volume mount

I have deployed a Docker container in Azure Container Services using Kubernetes. I have 3 containers defined in my service, one of the containers requires Persistent Volume so I have followed all the instruction to use azure file as persistent…
John T.
  • 1
  • 2
0
votes
1 answer

Enable ping by name from Docker container

I'm disabled to ping by name (ping google.com) from my docker container, but only by ip (ping 8.8.8.8). From cmd I can ping by name and ip, so I think is some network setup on my docker. I'm not too much in networking, so if anybody knows how to…
0
votes
0 answers

Docker-Compose - ASP.NET app not able to resolve DNS

I am trying to run ASP.NET application with SQL server in windows container using docker compose. I am able to ping SQL container IP from asp.net container however not able to connect through alias name. Please let me know if I am doing anything…
Manoj
  • 397
  • 2
  • 6
0
votes
0 answers

Docker Windows Containers creating unknown l2bridge networks

When the Docker service starts on my Windows Server 2016 VM, it creates a few l2bridge networks by itself. I need to understand why it does this, and how I can prevent it from doing it. Here is an example in PowerShell: PS C:\Users\Administrator>…
0
votes
1 answer

Containers on Azure Container Service and related issues

Hi I recently create a k8s cluster on Azure Container Service, just wonder if the containers (pods) created are all hyper-V containers? As an aside, I found that every time I do "kubectl create -f file" to start the windows container (pods), it…
0
votes
1 answer

Unable to connect to a docker container microservice

I am running a microservice inside a docker container using docker compose. The docker-compose.yml file is as follows. version: '2.1' services: flousermanagement: build: context: ../FloUserManagement/bin/Debug/netcoreapp2.0/publish …
Rajat Agrawal
  • 357
  • 1
  • 2
  • 9
0
votes
1 answer

Microsoft Visual C++ with /MDd produces broken executable inside Windows container

I build C++ code inside Windows container using Microsoft Visual C++ Build Tools 2015 msbuild /p:Configuration=Debug essentially runs cl.exe with /MDd option and produces unusable executable - see below. /p:Configuration=Release uses /MD and makes…
Ivan
  • 9,089
  • 4
  • 61
  • 74
0
votes
1 answer

Windows container fails to reach Azure File Storage

I have a c# web application running on IIS in a windows server core container. In the dockerfile I create a new user 'myUser' without password. I add the credentials to my Azure File store in the Dockerfile as well: USER myUser RUN powershell…
0
votes
2 answers

Provision Azure Kubernetes ACS cluster using Azure 2.0 CLI

I'm trying to provision an Azure ACS Kubernetes cluster using Windows nodes. The Azure 2.0 CLI worked fine creating a Linux cluster, but it failed when creating a Windows cluster. Here is the command I executed: ***@DAVEPC:~$ az acs create -n…
Dave Swersky
  • 34,502
  • 9
  • 78
  • 118
0
votes
1 answer

LetsEncrypt-ACMESharp http-01 challenge on IIS invalid

On server A (non-IIS) I executed: Import-Module ACMESharp Initialize-ACMEVault New-ACMERegistration -Contacts mailto:somebody@derryloran.com -AcceptTos New-ACMEIdentifier -Dns www.derryloran.com -Alias dns1 Complete-ACMEChallenge dns1 -ChallengeType…
9swampy
  • 1,441
  • 14
  • 24
0
votes
2 answers

Azure Service Fabric Windows Containers - Inter Container Communication

I have created an Azure Service Fabric Cluster using "Windows 2016 DataCenter with Containers" OS and enabled Reverse Proxy listening on Port 80 on the cluster. We intend to deploy our legacy ASP.NET MVC & WCF applications on this cluster. In our…
0
votes
1 answer

Publishing asp.net mvc website to windows container giving error

I am trying to publish basic mvc site to windows container. I get error when trying to run image in detach mode. I am able to build image and can see image when I run following command docker images Commands to run image # This line is…
Kaushal
  • 1,251
  • 1
  • 8
  • 8
1 2 3
23
24