A container that be used for deeplearning related project.
238
A ready to use container for deeplearning (tensorflow-v2) related project. It is available with vscode and jupyter notebook.
vscode will run on port 5000 and notebook will run on 8888. Another port 3000 is available for user specific purposes.
You can download and run this image using the following commands:
docker pull adityajn105/deeplearning:latest
docker run -d -p 8888:8888 -p 5000:5000 -e PASSWORD=password adityajn105/deeplearning:latest
Alternatively you can use mount bind in your host machine directoy (local directory) to access files.
docker run -d -p 8888:8888 -p 5000:5000 -e PASSWORD=password -v $(pwd):/home/local adityajn105/deeplearning:latest
In Windows PowerShell, use ${PWD}
Get vscode by visiting http://localhost:5000 and jupyter notebook by http://localhost:8888 in your browser.
Content type
Image
Digest
Size
1.2 GB
Last updated
over 6 years ago
docker pull adityajn105/deeplearning