具有指定标识符的虚拟机或容器未运行

9rnv2umw  于 2021-06-08  发布在  Redis
关注(0)|答案(0)|浏览(430)

# 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"]

我上面的代码给出了一个错误,当我构建它时。

Sending build context to Docker daemon  2.048kB
Step 1/3 : FROM alpine
 ---> a24bb4013296
Step 2/3 : RUN apk add --update redis
 ---> Running in fac02df601ff
fetch http://dl-cdn.alpinelinux.org/alpine/v3.12/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.12/community/x86_64/APKINDEX.tar.gz
(1/1) Installing redis (5.0.9-r0)
Executing redis-5.0.9-r0.pre-install
Executing redis-5.0.9-r0.post-install
Executing busybox-1.31.1-r16.trigger
OK: 7 MiB in 15 packages

**The command '/bin/sh -c apk add --update redis' returned a non-zero code: 4294967295: failed to shutdown container: container fac02df601ff06ff1c441ba0ba46fe5d10ac234da9dd48f69292611202dfe764 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 fac02df601ff06ff1c441ba0ba46fe5d10ac234da9dd48f69292611202dfe764 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)**

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题