You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can't find any other evidence of this in the wild beyond the quote below. As of upgrading to docker-desktop-ce 2.2.0.4 (43472) I see this error on a RUN command with docker build:
The command '/bin/sh -c apk add --no-cache openssh==8.1_p1-r0' returned a non-zero code: 4294967295: failed to shutdown container: container e0f131bf256edbf1e0cc073e6492a3227b4d6563f5b1f377e80f3cbce8978cf1 encountered an error during hcsshim::System::waitBackground: failure in a Windows system call: The virtual machine or container with the specified identifier is not running. (0xc0370110): subsequent terminate failed container e0f131bf256edbf1e0cc073e6492a3227b4d6563f5b1f377e80f3cbce8978cf1 encountered an error during hcsshim::System::waitBackground: failure in a Windows system call: The virtual machine or container with the specified identifier is not running. (0xc0370110)
The same command completes successfully on the base image in docker run --rm -it, and the shutdown appears normal there.
Docker Engine: 19.03.8
LCOW enabled
Windows 10 Pro 64-bit 1909 build 18363.720
This is for saltstack/salt:3000 which is based on alpine 3.11. This was working in LCOW before, only thing that's changed is a Docker Desktop upgrade.
I'm not sure if this PR is responsible for a new error I'm seeing or not -- but something in between nightly docker 2019-09-25 and nightly docker 2019-12-04 is causing errors on container exit under LCOW with a hcsshim::System::waitBackground message like this now:
PS C:\agent\_work\13\s> docker run -it hadolint/hadolint hadolint --version
Haskell Dockerfile Linter v1.17.3-1-g3fab409
time="2019-12-16T16:45:25-08:00" level=error msg="Error waiting for container: failed to shutdown container: container 33acef4c0b8c4edc15192cf81df85189a7b09d961ca893ac0437811c2625967c encountered an error during hcsshim::System::waitBackground: failure in a Windows system call: The virtual machine or container with the specified identifier is not running. (0xc0370110): subsequent terminate failed container 33acef4c0b8c4edc15192cf81df85189a7b09d961ca893ac0437811c2625967c encountered an error during hcsshim::System::waitBackground: failure in a Windows system call: The virtual machine or container with the specified identifier is not running. (0xc0370110)"
This is the last change to roll in that modified system.go so I figured I'd start here @kevpar
The text was updated successfully, but these errors were encountered:
The difference is between running with and without --rm; the command fails with the same error message when running without --rm. This is true even for simple commands like echo. Same error message in both CMD and bash/mintty.
Can't find any other evidence of this in the wild beyond the quote below. As of upgrading to docker-desktop-ce 2.2.0.4 (43472) I see this error on a RUN command with docker build:
The same command completes successfully on the base image in
docker run --rm -it
, and the shutdown appears normal there.Docker Engine: 19.03.8
LCOW enabled
Windows 10 Pro 64-bit 1909 build 18363.720
This is for
saltstack/salt:3000
which is based on alpine 3.11. This was working in LCOW before, only thing that's changed is a Docker Desktop upgrade.Originally posted by @Iristyle in #737 (comment):
I'm not sure if this PR is responsible for a new error I'm seeing or not -- but something in between nightly docker 2019-09-25 and nightly docker 2019-12-04 is causing errors on container exit under LCOW with a
hcsshim::System::waitBackground
message like this now:This is the last change to roll in that modified
system.go
so I figured I'd start here @kevparThe text was updated successfully, but these errors were encountered: