Trying to run docker command:
nvidia-docker run -d -p 8888:8888 -e PASSWORD="123abcChangeThis" theano_secure start-notebook.sh
taken from https://github.com/nouiz/Theano-Docker
returns an error:
Error: image library/theano_secure:latest not found
Is the theano_secure image currently unavailable?
Search theano_secure:
$ nvidia-docker search theano_secure:latest NAME DESCRIPTION STARS OFFICIAL AUTOMATED
The return of this command is empty, so the image is not available? If so, is there an alternative image of Theano docker from nvidia?
Update:
source building:
docker build -t theano_secure -f Dockerfile.0.8.X.jupyter.cuda.secure .
returns:
Err http://developer.download.nvidia.com Release.gpg Unable to connect to developer.download.nvidia.com:http: [IP: 184.24.98.231 80]
and:
W: Failed to fetch http://archive.ubuntu.com/ubuntu/dists/trusty/InRelease
Manually checking URLs: http://developer.download.nvidia.com and http://archive.ubuntu.com/ubuntu/dists/trusty/InRelease are both not available. Should I build with an alternative docker file?
Update 2:
I think this error occurs as http://archive.ubuntu.com/ubuntu/dists/trusty/InRelease does not exist. However, http://archive.ubuntu.com/ubuntu/dists/trusty/Release exists.
Can dockers be modified to use http://archive.ubuntu.com/ubuntu/dists/trusty/Release instead of http://archive.ubuntu.com/ubuntu/dists/trusty/InRelease ?
OS Version:
lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 14.04.4 LTS Release: 14.04 Codename: trusty
Update 3:
"you must first build docker", before running nvidia-docker "I tried
docker build -t theano_secure -f Dockerfile.0.8.X.jupyter.cuda.secure .
which returns:
Err http://developer.download.nvidia.com Release.gpg Unable to connect to developer.download.nvidia.com:http: [IP: 184.24.98.231 80]
I can pull out a docker pull kaixhin/theano image, but this does not work through a Jupyter laptop in the same way as nvidia-docker run -it -p 8888:8888 tensorflow/tensorflow:latest-gpu registered at https: //hub.docker. com / r / tensorflow / tensorflow / , There seems to be no Jupyter Theano dockers available.
How to open a docker kaixhin / anano instance through a Jupyter laptop?
I tried: nvidia-docker run -d -p 8893:8893 -v --name theano2 kaixhin/theano start-notebook.sh but get the error:
docker: Error response from daemon: invalid header field value "oci runtime error: container_linux.go:247: starting container process caused \"exec: \\\"start-notebook.sh\\\": executable file not found in $PATH\"\n".
Modifying a docker kaixhin/theano container to expose it through a Jupyter laptop?