Skip to content

andreamazzoni/jupyterhub

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jupyterhub

This jupyterhub configuration includes:

FirstUseAuthenticator

This authenticator class allow to create users from the admin console and let them to set their passwords on first login.

If you want user to be able to create themselves on the first login you have to change the flag like this:

c.FirstUseAuthenticator.create_users = True

DockerSpawner

This spawner class allow to create a single-user container for every user. The container will be automatically stopped (and removed) after a specified time:

c.JupyterHub.services = [
    {
        'name': 'cull_idle',
        'admin': True,
        'command': 'python /srv/jupyterhub/cull_idle_servers.py --timeout=3600'.split(),
    },
]

This spawner also has the possibility to select the image that user want to launch by a selector. You can add (or remove) images simply by edit jupyterhub/images.json files. At the moment you can find all the jupyter defaul images describerd here: https://github.com/jupyter/docker-stacks. Note that images you want to use has to be available locally, for example:

$ docker pull jupyter/base-notebook:latest

Run

You have to provide:

  • Docker
  • Docker Compose
  • Make

You have to execute:

$ make create-self-signed-certificate
...
$ docker-compose up

About

Jupyterhub behind Traefik, configured with DockerSpawner and FirstUseAuthenticator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published