Jupyter in Docker

Docker Release -- MAIN Docker Pulls GitHub last commit

  • Included:
    • Nvidia Drivers

Usage

docker run \
  -d \
  --name='Jupyter' \
  -e 'JUPYTER_ENABLE_LAB'='yes' \
  -e 'CHOWN_HOME'='yes' \
  -e 'CHOWN_HOME_OPTS'='-R' \
  -e 'NB_UID'='1000' \
  -e 'NB_GID'='1000' \
  -e 'GRANT_SUDO'='yes' \
  -p '8888:8888/tcp' \
  -v $PWD:'/home/jovyan':'rw' \
  --user root 'jonfairbanks/jupyter-docker' 

Enabling GPU Support

Also pass --gpus all when starting the container

Resources