Created FROM pytorch/pytorch
Default WORKDIR is : /workspace
Default commad is : CMD ["jupyter", "notebook", "--ip=0.0.0.0", "--port=8888", "--allow-root"]
To start run jupyer notebook on port 8888 with /workspace directory inside container mapped from workspace directory on host :
ON CPU only :
docker run -it --rm -p=8888:8888 -v HOST_PATH_TO_WORKSPACE_ON_HOST:/workspace freeze1111/jupyter_python3_pytorch:latest
With GPU support:
docker run --runtime=nvidia -it --rm -p=8888:8888 -v HOST_PATH_TO_WORKSPACE_ON_HOST:/workspace freeze1111/jupyter_python3_pytorch:latest
Content type
Image
Digest
Size
3.4 GB
Last updated
about 6 years ago
docker pull freeze1111/jupyter_python3_pytorch