Developing environment with
docker
andjupyterlab
for deep learning research inPyTorch
Change your PASSWORD
in .docker.env
and run
docker-compose up
And visit http://localhost:10011 to reach jupyterlab
- Use
datascience-notebook/base-notebook
as base image, Dockerfile - Try Deepo
Add the following to Dockerfile
RUN apt-get update -y
RUN apt-get install ffmpeg libsm6 libxext6 -y
docker create -it --gpus all -p 7777:8898 --name torch -v .:/workspace pytorch/pytorch:1.9.0-cuda10.2-cudnn7-runtime
docker run --rm -it \
--gpus all \
-p 8888:8888 \
-e JUPYTER_TOKEN=passwd \
tverous/pytorch-notebook:latest