373 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
27
views
Run Mongodb On Docker give me "CreateProcess: failure in a Windows system call: The system cannot find the file specified. (0x2)"
I install Docker engine on windows server like this link https://learn.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=dockerce
Now I want to run Mongodb in ...
0
votes
0
answers
139
views
Cannot import QtWebEngineWidgets in PySide6 on a docker Windows container
I have a python PySide6 program that I want to compile and test on a container. The program runs on Windows, so I have a Windows container:
FROM winamd64/python:3.13.5-windowsservercore
# .. install ...
0
votes
0
answers
130
views
GitLab Runner on Windows with Docker and ECR login helper – no basic auth credentials error
I'm running into an issue with a GitLab Runner on Windows pulling images from AWS ECR.
Here’s my setup:
Windows Server instance running on AWS
Docker and GitLab Runner installed
The runner is using ...
0
votes
0
answers
92
views
OCCT.NET DLL not loading inside Docker container — Could not load file or assembly 'C:\app\Occt.NET.dll'. The specified module could not be found
I'm running a .NET application inside a Windows-based Docker container. The app uses OCCT.NET, and all the required OCCT native DLLs and OCCT .NET DLLs are present inside the image, under the app's ...
0
votes
1
answer
161
views
Issue with Evo Pdf library in Windows Container
I have an Asp.net MVC 4.6 project. I use the Evo PDF dll to convert HTML strings to PDF files.
It works fine locally, as expected. But when I run the app in a Windows Docker Container, the PDF content ...
-1
votes
1
answer
81
views
Mounting windows directory to a windows docker container with docker compose - Error response from daemon: invalid volume specification:
I'm working on a docker compose where I'm trying to mount a host directory to container directory but I'm getting the following error;
docker compose up --build
Error response from daemon: invalid ...
0
votes
1
answer
125
views
windows container scanning against vulnerabilities
I'm looking for command-line tools that can scan Windows containers for vulnerabilities. My primary focus is to integrate the tool into a CI/CD pipeline.
Any suggestions?
tried trivy, but this is not ...
-1
votes
1
answer
52
views
Unable to import SSL certificate into my IIS docker container
I have created docker file to import SSL certificate in IIS container. It throws some errors while building docker file.
Docker file I used
# escape=`
FROM mcr.microsoft.com/dotnet/framework/aspnet:4....
0
votes
1
answer
429
views
How to install VS BuildTools via Dockerfile with PowerShell?
I have this Windows container Dockerfile:
FROM mcr.microsoft.com/windows/servercore:ltsc2022
USER ContainerAdministrator
SHELL ["powershell", "-Command", "$...
0
votes
0
answers
238
views
Running Linux and Windows container on Amazon ECS cluster
I have a few .NET microservices, and a couple of them are developed using the .NET Framework. I'm planning to host everything on an ECS cluster. I'm new to Amazon ECS, and I saw a blog article from ...
1
vote
1
answer
210
views
Unable to install SSDT from docker file for windows docker image
I am trying to create windows image for .NET framework 4.8.
One of my project APPSeCONNECT.Database.sqlproj when getting nuget restored isn't able to find the file.
C:\app\AEC.Platform.Common\AEC....
0
votes
1
answer
172
views
Why is the default option for building Windows containers inside VS2022 to compile outside of the container?
I have a requirement to containerize a .NET Framework 4.8 app that can't be upgraded to Dotnet Core. Inside Visual Studio when you use the out of the box Docker Support, it'll create a dockerfile that'...
0
votes
0
answers
54
views
Why does .Net Framework version differ for the same container depending on the hosts version of Windows?
How is it possible that the .Net Framework version within a Docker container is different, dependent on what host machine it runs on?
On my development Windows 11 machine (which is itself .NET ...
1
vote
0
answers
105
views
"Can't add file.... The process cannot access the file because it is being used by another process." when running dotnet-docker aspnetapp
System Info:
.NET SDK:
Version: 8.0.205
Commit: 3e1383b780
Workload version: 8.0.200-manifests.818b3449
Runtime Environment:
OS Name: Windows
OS Version: 10.0.19045
...
0
votes
0
answers
374
views
How to run net framework docker image on windows container using HTTPS
I have ASP .NET framework application, made into a docker image using Dockerfile, but when running, it only runs as HTTP on port 80 (default). How do I "add" HTTPS support?
Ideally, I want ...