Skip to content

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

License

Notifications You must be signed in to change notification settings

mhwasil/docker-stacks

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 58.6%
  • Makefile 21.4%
  • Shell 20.0%