978 questions
0
votes
1
answer
108
views
Docker-Outside-Docker with WSL2 and Linux Containers - `docker` Mounted as Directory
I am trying to set up a Dockerized Jenkins instance that uses the host system's Docker to run Docker containers for its pipelines. On a Linux machine, I was able to (from https://forums.docker.com/t/...
0
votes
0
answers
78
views
TFTP Request Failing on Host Machine Despite Working in Container
I expect the host machine to receive TFTP requests. When testing with tftpboot and busybox_tftp_client, I can successfully download the file using:
tftp -g -l /tmp/testfile -r testfile tftpbootHowever,...
0
votes
1
answer
887
views
Vite build in docker with WSL2 integration is extremely slow
I'm having a hard time understanding the root cause of Vite build poor performance inside of a docker image that I hope for some guidance here.
Running vite build locally versus inside of a docker has ...
1
vote
1
answer
72
views
Mapping ProgramData in Docker Windows
I am trying to map a volume for C:\ProgramData. Unfortunately, Docker only gives a very generic message:
Error response from daemon: invalid volume specification: 'C:\ProgramData\Microsoft\...
0
votes
1
answer
249
views
Docker is not running In windows Standard User throwing Error. How To Resolve the Issue
I download the docker for windows 11 and i installed. after installation i try to open the docker its throwing ERROR: open .\pipe\docker_engine_linux: The system cannot find the file specified.
I need ...
0
votes
1
answer
301
views
How to install Visual C++ Redistributable in ASP.NET Core Runtime Docker images
I have a project which requires the Visual C++ Redistributable packages installed on-top of the standard ASP.NET Core and .NET runtimes and libraries in the Microsoft ASP.NET Core Runtime Docker image....
1
vote
0
answers
261
views
Customize gitlab-runner-helper docker image to pull multiple private repositories?
I am new to docker, and I am currently trying to setup gitlab runner to run some tests in docker. The main problem here is that some of the tests require cloning/fetch from multiple private ...
1
vote
0
answers
378
views
regsvr32 fails in windows docker container
When trying to register a DLL specifically (DAO350.DLL) the regsvr fails with exit code 5.
Command:
$process = Start-Process "regsvr32" -ArgumentList "/s "C:\Program Files (x86)\...
1
vote
1
answer
570
views
Is there a Windows Docker containers eqivalent to tmpfs volumes?
On Linux I can mount RAM via tmpfs as a volume into my Linux containers if I need fast file access for temporary data.
https://docs.docker.com/storage/tmpfs/
Linux example:
docker run -it --rm --...
0
votes
0
answers
1k
views
Python Logger Not showing in Docker container Logs
I have a couple of containers running as a Spark Cluster.
When I am submitting my Python application, I made sure to have logging being managed by a the logging module.
However, I cannot see any of my ...
0
votes
1
answer
383
views
Changing the PATH variable in Dockerfile for a Windows container
I am building a Windows Docker container and I would like to add a path to the PATH environment variable.
I did not have success using the ENV command in the Dockerfile. Is there a way to use this ...
0
votes
0
answers
252
views
Build-time secrets for Windows Docker images
In an unfortunate turn of events, I'm building a Windows Docker image. I need to use a secret during the build, but want to make sure it's securely out of the resulting image.
Because it's a a Windows ...
0
votes
0
answers
918
views
Docker for desktop gives "Access Denied" Error
I have installed "Docker for Desktop" in Windows Server 2022
I have switched docker daemon to Windows containers.
Then I am running below command:
docker run -it mcr.microsoft.com/windows/...
0
votes
1
answer
210
views
Why does my EventStore Docker container stop when using the given command?
I install and run EventStore with this command:
docker run --name eventstore-node -d -p 2113:2113 -p 1113:1113 eventstore/eventstore
the container stops when running
log file image: click here
I did ...
1
vote
1
answer
2k
views
Need node.js and dotnet sdk in same windows docker image
I have the following dockerfile for Windows, which fails to install node.js because msiexec is not a recognized command...
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
##############################...
0
votes
1
answer
147
views
Docker container Losing all file when start from cache
I am trying to create a Dockerfile for developing Django backend. However, when I finished my Dockerfile and tried to build it, a very strange error occurred. When my container was successfully built ...
0
votes
1
answer
343
views
Windows Container invalid certificate
I have an application which I contanerized in Windows Container.
The application is a .NetFramework server that calls another API Service.
I am facing the below exception
System.Net.Http....
1
vote
0
answers
187
views
AmazonnLinux Docker Image fails to build on simple update
I am trying to build a Docker image using AmazonLinux image. The build simply fails when performing a simple yum update with the following error:
For information, I am running docked on WSL . On the ...
3
votes
0
answers
344
views
What is the Docker Scratch Linux equivalent base image in Windows Containers?
In linux container, Scratch is the starting point for any linux containers. It has no folder/file in it. FROM scratch is a no-op in the Dockerfile, and will not create an extra layer in your image (so ...
0
votes
3
answers
2k
views
Powershell not starting inside Windows Servercore Docker image
After starting a Windows docker container (base image mcr.microsoft.com/windows/servercore:ltsc2019) on a Windows Server 2019 Datacenter host i cannot start a powershell inside it.
If i create an ...
1
vote
0
answers
908
views
What's the fastest/best way to run a Windows docker container on Windows?
I have a fairly large Windows docker image + container (it has MSVS and lots of tools, based on Windows server 2022). It runs quite slowly even on my fast 16-core Threadripper Windows 11 desktop; it ...
1
vote
2
answers
774
views
Job/jar in Apache Flink doesn't have permisson to file in Docker
I have Apache Flink job for parsing csv-files which works fine in from IntelliJ IDEA on Windows. But when I put my job (jar) in docker-container Apache Flink i have problems with permisson to file ...
0
votes
1
answer
1k
views
How can I run a Windows Docker container on Windows without "open \\.\pipe\docker_engine_windows: The system cannot find the file specified"?
I am running Docker 20.10.22 on Windows 10 Pro 64-bit.
In my Docker Desktop settings, I have using WSL 2 disabled:
I have Hyper-V enabled:
I have Docker Desktop in Windows containers mode instead of ...
0
votes
0
answers
284
views
How can i access my dockerised flask application from a separate device on the host network
I've created a API on a flask application that i'm trying to access from my phone on the same network as the windows host machine but i'm having no luck.
I'm running docker desktop on windows 10 with ...
1
vote
1
answer
292
views
Real location of docker windows container in a windows host?
Question
I would like to know the location of the containers when it comes to a Windows environment (both the container and the host), that is, I would like to know where the container data is after ...