Windows error 0xC0370110, -1070137072

Detailed Error Information

ERROR_VMCOMPUTE_SYSTEM_ALREADY_STOPPED[1]

MessageThe Compute System with the specified identifier did already stop.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)true
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode55 (0x037)
NameFACILITY_USERMODE_VIRTUALIZATION[2][1]
DescriptionThe source of the error code is the user mode virtualization subsystem.[2][1]
Error Code272 (0x0110)

Questions

8votes
1answer

Unable to build a Docker image on Windows 10

Windows 10 Pro 1909 Docker 2.2.0.4 (43472) Dockerfile starts like this: FROM debian:stable-20191118 And that is the only part that works (or any other linux like ubuntu:18.04) Any next line, like any of these RUN DEBIAN_FRONTEND=noninteractive RUN LC_ALL=en_US.UTF-8 RUN apt-get update -y && apt-get install -y nginx gets the same [...] read more
linux
windows
docker
1vote
0answers

Docker container exit immediately

I've troubles with Docker EE, I've successfully started last week 3 containers I've made, now I need to run a simple nodejs container, I did. docker run -d node but it exists immediately and I've got the following error > time="2020-11-16T11:25:05+01:00" level=error msg="Error waiting for container: > failed to shutdown [...] read more
docker
1vote
1answer

Docker-compose error "failed to shutdown container"

I am trying docker-compose in windows container,getting below error -failed to shutdown container: container . Looking at the container status for id 3878f34c9213, it says exited...how to find why this container exited or how to resolve this error ? Windows 10 machine Docker version 19.03.8 > docker-compose up Building web [...] read more
docker
docker-compose
1vote
1answer

Docker pull fails on Windows 10 in Windows Container mode

I am trying to run docker natively on Windows 10 : https://docs.microsoft.com/en-us/virtualization/windowscontainers/quick-start/set-up-environment?tabs=Windows-10-Client My Windows version is : OS Name: Microsoft Windows 10 Pro OS Version: 10.0.18362 N/A Build 18362.720 Docker version is : Docker version 19.03.8, build afacb8b { "registry-mirrors": [], "insecure-registries": [], "debug": true, "experimental": true } Docker Desktop [...] read more
windows
docker
containers
0votes
0answers

The command '/bin/sh -c apk add --no-cache git' returned a non-zero code: 4294967295

I am new to Docker and following the tutorial for Developers at https://hub.docker.com/?overlay=onboarding&step=build Everything is OK until I get to the point where I enter the command: docker build -t darrenwnpi/cheers2019 . I actually enter docker build --build-arg HTTP_PROXY=http://myproxy:4980 -t darrenwnpi/cheers2019 . where myproxy is the address of our inhouse [...] read more
docker-for-windows
0votes
0answers

The virtual machine or container with the specified identifier is not running

# Use an existing docker image as a base FROM alpine # Download and install a dependency RUN apk add --update redis # Tell the image what to do when it starts as a container CMD ["redis-server"] My above code gives an error and when i build it. Sending build [...] read more
docker
redis
dockerfile
docker-machine
0votes
1answer

Docker build failed on Windows 10 Pro x64

I have like this docker file: FROM python:3.8.2-alpine MAINTAINER Developer Apps LTD ENV PYTHONUNBUFFERED 1 COPY ./requirements.txt /requirements.txt RUN pip install -r /requirements.txt RUN mkdir /app WORKDIR /app COPY ./app /app RUN adduser -D user USER user > Note: This code work on MAC OS perfectly but on Windows 10 [...] read more
python
docker
windows-10

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0