neoloc/jupyterhub #174

Merged
unkinben merged 5 commits from neoloc/jupyterhub into develop 2024-11-16 20:20:16 +11:00
Showing only changes of commit 92a9655a50 - Show all commits

View File

@ -9,6 +9,7 @@ c = get_config()
c.JupyterHub.bind_url = 'http://:8000'
c.JupyterHub.hub_ip = '0.0.0.0'
c.JupyterHub.hub_port = 8081
c.NotebookApp.enable_terminals = True
# Configure the DockerSpawner
c.JupyterHub.spawner_class = DockerSpawner
@ -26,6 +27,7 @@ c.DockerSpawner.volumes = {
# DockerSpawner options
c.DockerSpawner.remove = True
c.DockerSpawner.debug = True
c.DockerSpawner.pull_policy = "always"
# LDAP Authentication
c.JupyterHub.authenticator_class = 'ldapauthenticator.LDAPAuthenticator'