python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Docker build failed | The command '/bin/sh -c node -v' returned a non-zero code: 4294967295 on windows
This is a basic Dockerfile that I am trying to build on windows docker. docker build . -t nishantt95/my-node-app
FROM node:16.14.2
WORKDIR /app
COPY package*.json ./
RUN npm i
COPY . ./
EXPOSE 300...
Nishant Thapliyal
Votes: 0
Answers: 1
docker: Error response from daemon: Get "https://registry-1.docker.io/v2/": Service Unavailable
I know this question seems like very similar to many other questions. I also read many of them included this one, I tried all I can try for but still did not resolve my issue.
my issue
I am using Wind...
Eric Cheng
Votes: 0
Answers: 1
From inside of a Docker container, how do I connect to another process listening inside the same container?
I have spent a couple of hours researching this and the consensus seems to be that using host.docker.internal instead of localhost should allow one process within a container to connect to another pro...
Alex R
Votes: 0
Answers: 1
Server running out of memory with Docker and Windows Nano
I've got a VM running Windows Nano and Docker containers. The Docker containers are all running ASP.NET Core 5 apps. I'm coming across this really weird bug where the VM is running out of memory, and ...
Nightflam3s
Votes: 0
Answers: 0