I’m trying to use jupyter from a custom docker image, but when I run it I get this error:
C:\Program Files\Docker\Docker\Resources\bin\docker.exe: Error response from daemon: container 342077588ddb51ca509982cece776c704701999530f4cc5519ec218d1461b1fe encountered an error during Start: failure in a Windows system call: The virtual machine or container exited unexpectedly. (0xc0370106).
The DOCKERFILE is as follows:
FROM python AS python-test
RUN pip install jupyter
RUN pip install numpy
RUN mkdir -p /notebooks
EXPOSE 8888
VOLUME E:/notebooks
#RUN ["jupyter notebook"]
OS: Windows 10
Docker version:
Client: Docker Engine - Community
Version: 18.09.2
API version: 1.39
Go version: go1.10.8
Git commit: 6247962
Built: Sun Feb 10 04:12:31 2019
OS/Arch: windows/amd64
Experimental: false
Server: Docker Engine - Community
Engine:
Version: 18.09.2
API version: 1.39 (minimum version 1.24)
Go version: go1.10.6
Git commit: 6247962
Built: Sun Feb 10 04:28:48 2019
OS/Arch: windows/amd64
Experimental: false
User contributions licensed under CC BY-SA 3.0