mhwasil / docker-stacks

Docker images used for e-assessment Hochschule Bonn-Rhein-Sieg

Repository from Github https://github.commhwasil/docker-stacksRepository from Github https://github.commhwasil/docker-stacks

Build Status

Single user images

The minimal single user image minimal-notebook is based on jupyter/minimal-notebook.

  • notebook image is used for teaching environment
  • restricted-notebook is used for examination environment

Run the image locally

docker run -it --name notebook --rm -p 8888:8888 digiklausur/notebook:latest
  • Attach host host directory to the container

    docker run -it --name notebook -v /home/myhome:/home/jovyan/myhome --rm -p 8888:8888 digiklausur/notebook:latest
    
    
  • Run the container in the background

    docker run -it --name notebook -v /home/myhome:/home/jovyan/myhome --rm -d -p 8888:8888 digiklausur/notebook:latest
    
  • Open browser and go to localhost:8888

  • Enter the notebook token if asked

    If you run docker in the background, you can get the log and the notebook token by

    docker logs --follow notebook
    

About

Docker images used for e-assessment Hochschule Bonn-Rhein-Sieg

License:MIT License


Languages

Language:Dockerfile 58.7%Language:Makefile 21.4%Language:Shell 20.0%